{# 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 %} {% if submission['courseid'] in open_courses %} {% set course = open_courses[submission['courseid']] %} {{ course.get_name(user_manager.session_language()) }}: {{ submission["task"].get_name(user_manager.session_language()) }} {% endif %} {% endfor %} {% else %} {{ _("No submissions") }} {% endif %}
{{ template_helper.call('main_menu', template_helper=template_helper) | safe }} {% endblock %} {% block content %}

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

{%if open_courses %} {% for courseid, course in open_courses.items() %} {% with course=course, tasks_data=tasks_data[courseid], tasks=sorted_tasks[courseid] %} {% include "upcoming_task_list.html" %} {% endwith %} {% endfor %} {% else %} {% endif %} {% endblock %}