{% extends "base.html" %} {% block content %}
← Back to {{ report.date[:7] }}

{{ dep_name }} - {{ report.date }}

{% if report.teacher_notes %}

Teacher Notes

{% for note in report.teacher_notes %}

{{ note.note }}

{% if note.actor %}

By: {{ note.actor }} at {{ note.capture_time }}

{% endif %} {% if note.attachment_id %} {% if is_image(note.attachment_id, dep_folder) %} {% elif is_video(note.attachment_id, dep_folder) %} {% endif %} {% endif %}
{% endfor %}
{% endif %} {% if report.activities %}

Activities

{% for activity in report.activities %} {% set outer_loop = loop.index %}
{% if activity.description %}

{{ activity.description }}

{% endif %} {% if activity.subject_names %}
{% for subject in activity.subject_names %} {{ subject }} {% endfor %}
{% endif %} {% if activity.snapshots %} {% endif %}
{% endfor %}
{% endif %} {% if report.snapshots %}

Snapshots

{% endif %}
{% endblock %}