oodviewer/templates/term.html

10 lines
210 B
HTML
Raw Normal View History

2014-03-27 15:19:30 +00:00
{% 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 %}