{% 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 %}
{% 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" %}