forum/templates/_list.html
2022-07-19 14:38:10 -06:00

17 lines
301 B
HTML

{% extends 'base.html' %}
{% block content %}
<h1>object_names</h1>
<table>
<tbody>
{% for object in object_list %}
<tr>
<dt>{{ object }}</dt>
</tr>
{% empty %}
<tr>No objects yet.</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}