13 lines
269 B
HTML
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 %} |