Files
penracourses/templates/view_feedback.html
T
Ross 41877cb7e6 .
2021-05-15 17:12:38 +01:00

13 lines
269 B
HTML

{% extends 'base.html' %}
{% block content %}
<div class="anatomy">
<h1>Feedback</h1>
<ul>
{% for note in notes %}
<li>{{note.content_type }}: {{note.note_type}} / {{note.note}} [{{note.complete}}]</li>
{% endfor %}
</ul>
</div>
{% endblock %}