oodviewer/templates/term.html

10 lines
210 B
HTML

{% extends "base.html" %}
{% block body %}
<h1>Entries for {{term}}</h1>
<ul>
{% for entry, at, by in entries %}
<li>{{ entry}} <i>(added by {{ by }} on {{ at }})</i></li>
{% endfor %}
</ul>
{% endblock %}