Files
penracourses/templates/exam_user_status.html
T
2023-01-09 09:52:09 +00:00

22 lines
646 B
HTML

{% if statuses %}
<div class="alert alert-warning" role="alert">
<ul>
{% for status in statuses %}
<li>{{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}}
</li>
{% endfor %}
</ul>
</div>
{% endif %}