{% extends "locations/base.html" %} {% load forms_tags %} {% load djtables_tags %} {% block extra_stylesheets %} {% endblock %} {% block extra_javascript %} {% endblock %} {% block left %}{% if no_location_types %}

You haven't created any subclasses of Location yet.

{% else %}{% for type in location_types %}

{{ type.plural|title }}

{% table_cols type.table %} {% table_head type.table %} {% for location in type.table.rows %} {% empty %} {% endfor %} {% table_foot type.table %}
{{ location }}

Nothing to display.

{% endfor %}{% endif %} {% endblock %} {% block right %}

Map

{% for type in location_types %}

Add a {{ type.singular|title }}

{% render_form type.form %} {% csrf_token %}
{% if type.form.instance %} {% endif %}
{% endfor %} {% endblock %}