mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2024-11-22 15:21:52 +00:00
15 lines
397 B
HTML
15 lines
397 B
HTML
{% extends "base.html" %}
|
|
{% load link %}
|
|
{% block title %}Troggle: {{object_list.1.meta.object_name}} objects{%endblock%}
|
|
|
|
{% block contentheader %}
|
|
<h1>{{object_list.0.object_name}} objects</h1>
|
|
{% endblock contentheader %}
|
|
|
|
{% block content %}
|
|
<ul>
|
|
{% for object in object_list %}
|
|
| {{ object|link }}
|
|
{% endfor %} |
|
|
</ul>
|
|
{% endblock content %} |