{% extends "status/base.html" %} {% block content %}
{% if add_form %}
{{ add_form.section }}
{% endif %} {% if section_form %} {% if section_form.errors %} {% endif %}
Add new section
Name Organizations {% if section_form.categories %} Categories {% else %} Services {% endif %} {% if section_form.states %} State {% endif %}
{{ section_form.errors }}
{{ section_form.type }}{{ section_form.name }} {{ section_form.type.errors }} {{ section_form.name.errors }} {{ section_form.organizations }}{{ section_form.organizations.errors }} {% if section_form.categories %} {{ section_form.categories }} {{ section_form.categories.errors }} {% else %} {{ section_form.service_choice }} {{ section_form.service_choice.errors }} {% endif %} {{ section_form.state_choice }} {{ section_form.state_choice.errors }}
{% endif %}
{% endblock %}