Add a basic index and some models for each area
[climbing.kerkeslager.com] / src / climbing / templates / climbing / area_list.html
1 {% extends 'core/base.html' %}
2
3 {% block content %}
4   {% for object in object_list %}
5     <p>{{ object.name }}</p>
6     {% if not forloop.last %}
7       <hr/>
8     {% endif %}
9   {% empty %}
10     <em>No areas found.</em>
11   {% endfor %}
12 {% endblock %}