This commit is contained in:
Ross
2021-05-15 17:12:38 +01:00
parent 6ee81f84df
commit 41877cb7e6
3 changed files with 28 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{% 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 %}