{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %}

Assigned Tasks

{% if tasks %}
{% for task in tasks %}

{{ task.title }}

Description: {{ task.description }}

Due Date: {{ task.due_date.strftime('%Y-%m-%d') }}

Teacher: {{ task.teacher.username }}

{% if task.file_path %}

Attachment: Download

{% endif %} Submit Task
{% endfor %}
{% else %}

No tasks assigned yet.

{% endif %}