Files
penracourses/templates/exam_user_status.html
T

24 lines
672 B
HTML

{% if statuses %}
<ul>
{% for status in statuses %}
<li>
{% comment %} {{status.datetime|date:"SHORT_DATETIME_FORMAT"}}:
{% if status.user_user %}
{{status.user_user}}
{% endif %}
{% if status.cid_user %}
{{status.cid_user}}
{% endif %}
{{status.status}}
{{status.extra}} {% endcomment %}
{{status}}
</li>
{% endfor %}
</ul>
{% else %}
Nil recorded.
{% endif %}