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

{{ progresstext }}

{% endif %}

{% trans "Selected tags" %}:

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

{% trans "Filter" %}:

{% endif %}
{% for assignment, howsolved in assignmentlist_with_howsolved %}
{% if user_is_admin %} {% trans "Edit" %} {% endif %}

{{ assignment }}

{% for tag in assignment.tags.all %} {% endfor %}
{% trix_assignment_markdown assignment.text %}
{% if request.user.is_authenticated %}

{% trans "How did you solve the assignment?" %}

{% trans "Saving..." %}
{% endif %} {% if assignment.solution %}
{% trans "See solution" %}
{% trix_assignment_markdown assignment.solution %}
{% endif %}
{% endfor %} {% include "trix_student/include/pager.django.html" %}
{% endblock body %}