Files
penracourses/templates/view_feedback.html
T
Ross d5b3d00b3c .
2021-05-16 13:30:27 +01:00

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 %}