{# This file is part of INGInious. See the LICENSE and the COPYRIGHTS files for #} {# more information about the licensing of this file. #} {% extends "layout.html" %} {% block title %}{{ _("Urgent tasks") }}{% endblock %} {% block navbar %} {% endblock %} {% block column %}

{{ _("Upcoming tasks") }}

{{ _("Course list") }}

{{ _("Last tried exercises") }}

{% if submissions %} {% for submission in submissions %} {{ submission["task"].get_course().get_name(user_manager.session_language()) }}: {{ submission["task"].get_name(user_manager.session_language()) }} {% endfor %} {% else %} {{ _("No submissions") }} {% endif %}
{{ template_helper.call('main_menu', template_helper=template_helper) | safe }} {% endblock %} {% block content %}

{{ _("My Upcoming Tasks") }}

{%if open_courses %} {% set username = user_manager.session_username() %} {% for courseid, course in open_courses.items() %}
{{ course.get_name(user_manager.session_language()) }} {% with course=course, tasks_data=tasks_data[courseid] %} {% include "upcoming.html" %} {% endwith %}
{% endfor %} {% else %} {{ _("You have no upcoming tasks") }} {% endif %}
{% endblock %}