{% extends "admin.html" %} {% block headtitle %}Manage Video Forms - {% endblock %} {% load url from future %} {% block videos_active %} class="active" {% endblock %} {% block content %}
{% if enabled_video_forms %}

Enabled Forms

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

There are no enabled forms.

{% endif %} {% if disabled_video_forms %}

Enabled Forms

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