{% extends "base.html" %} {% block content %} ← Back to Dependents

Daily Reports for {{ dep_name }}

{% for report in reports %}
{{ 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 %} {% endif %}
{% endfor %}
{% endif %} {% if report.activities %}
Activities
{% for activity in report.activities %}
{% if activity.description %}
{{ activity.description }}
{% endif %} {% if activity.subject_names %}
Subjects: {{ activity.subject_names | join(', ') }}
{% endif %} {% for snapshot in activity.snapshots %}
{% if snapshot.note %}
{{ snapshot.note }}
{% endif %} {% if snapshot.attachment_id %} {% endif %} {% if snapshot.created_by %}
By: {{ snapshot.created_by.first_name }} {{ snapshot.created_by.last_name }} at {{ snapshot.capture_time }}
{% endif %}
{% endfor %}
{% endfor %}
{% endif %} {% if report.snapshots %}
Snapshots
{% for snapshot in report.snapshots %}
{% if snapshot.note %}
{{ snapshot.note }}
{% endif %} {% if snapshot.attachment_id %} {% endif %} {% if snapshot.created_by %}
By: {{ snapshot.created_by.first_name }} {{ snapshot.created_by.last_name }} at {{ snapshot.capture_time }}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %} {% endblock %}