{% extends 'users/dashboard.html' %} {% block sectiontitle %}

Your forms

{% endblock %} {% block section %}

Active Forms

{# status icon | host or form link | target email | number of submissions #} {% for form in enabled_forms %} {% include "forms/list-item.html" %} {% else %}

No active forms found. Forms can be enabled by clicking the unlock icon below.

{% endfor %}
{% if disabled_forms %}

Disabled Forms

{# status icon | host or form link | target email | number of submissions #} {% for form in disabled_forms %} {% include "forms/list-item.html" %} {% endfor %}
{% endif %} {% if not enabled_forms and not disabled_forms and current_user.upgraded %}
You don't have any forms associated with this account, maybe you should verify your email.
{% endif %}
{% include "forms/create.html" %} {# modals for each form #} {% for form in (enabled_forms + disabled_forms) %} {% endfor %} {% endblock %}