Files
penracourses/templates/exam_notes.html
T
Ross 04aa5689aa .
2021-09-11 14:22:21 +01:00

10 lines
291 B
HTML

{% if notes %}
<div class="alert alert-warning" role="alert">
The following questions have active notes
<ul>
{% for note in notes %}
<li>{{note.get_author_str}}: <a href="{{note.get_absolute_url}}">{{note.get_short_str}}</a></li>
{% endfor %}
</ul>
</div>
{% endif %}