Files
penracourses/templates/exam_user_status.html
T
2024-01-08 13:32:00 +00:00

24 lines
730 B
HTML

{% if statuses %}
<div class="alert alert-warning" role="alert">
<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>
</div>
{% endif %}