{% extends "trix_student/base.django.html" %} {% load i18n %} {% load trix_core_tags %} {% block title %}{% trans "Assignments" %}{% endblock title %} {% block content %} {% block pageheader %} {% endblock pageheader %}
{% if request.user.is_authenticated and assignmentlist_with_howsolved %}
{% trans "Loading progress..." %}
{% verbatim %}
{{ solvedPercentage }}%
{% endverbatim %}

{{ progresstext }}

{% endif %}

{% trans "Selected tags" %}:

{% for tag in non_removeable_tags %} {{ tag }} {% endfor %} {% if selected_tags %} {% for tag in selected_tags %} {{ tag }} {% endfor %} {% endif %}
{% if selectable_tags %}

{% trans "Filter" %}:

{% endif %}

{% trans "Print" %}:

{% include "trix_student/include/pager.django.html" with pager_extraclass="pager-no-topmargin hidden-xs" %} {% for assignment, howsolved in assignmentlist_with_howsolved %} {% include "trix_student/include/assignment.django.html" %} {% empty %}

{% trans "No assignments found" %}

{% endfor %} {% include "trix_student/include/pager.django.html" %}
{% endblock content %}