{% extends "admin.html" %} {% block headtitle %}Manage Travel Grant Forms - {% endblock %} {% load url from future %} {% block tg_active %} class="active" {% endblock %} {% block content %}
{% if enabled_tg_forms %}

Enabled Forms

{% for form in enabled_tg_forms %} {% endfor %}
Name Url
{{ form }} {% url 'travel_grant_form' form.slug %} Applications ({{ form.get_applications.count }})
{% else %}

There are no enabled forms.

{% endif %} {% if disabled_tg_forms %}

Enabled Forms

{% for form in disabled_tg_forms %} {% endfor %}
Name Url
{{ form }} -
{% endif %}
{% endblock %}