14 lines
355 B
HTML
14 lines
355 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<div class="anatomy">
|
|
<h1>Feedback</h1>
|
|
Displays a list of feedback reports yet to be acted upon
|
|
<ul>
|
|
{% for note in notes %}
|
|
<li><a href="{{ note.get_object_url }}">{{note.content_type }}</a>: {{note.note_type}} / {{note.note}} </li>
|
|
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endblock %} |