{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
{% for a in downloads %}
{{ a.title }}
{{ a.student_class }} • {{ a.upload_date }}
{% endfor %}
| Class Name |
Action |
{% for c in classes %}
| {{ c.name }} |
|
{% endfor %}
| Name |
Username |
Action |
{% for p in parents %}
| {{ p.full_name }} |
{{ p.username }} |
|
{% endfor %}
| Child Name |
Class |
Parent |
Status |
Action |
{% for ch in children %}
| {{ ch.name }} |
{{ ch.class_name }} |
{{ ch.parent_name }} |
{% if ch.is_blocked %}
Blocked
{% else %}
Active
{% endif %}
|
|
{% endfor %}