{%extends "rolodex/base.html" %} {%load staticfiles%} {%block head%} {%endblock%} {%block content%} {% if edit %}

{{orgNode.orgName}}

{% else %}

New Org

{% endif %}

ID

{% if edit %}
{% else %} {% endif %} {%csrf_token%} {% if form.errors or formset.errors %}

Whoops, there was a mistake... Correct it below and try again.

{%endif%}
{% if form.errors %}
  • {{ form.non_field_errors|striptags }}
  • {% for field in form %} {%if field.errors%}
  • {{field.label}}: {{ field.errors|striptags }}
  • {%endif%} {% endfor %}
{% endif %}
  • Name
  • The full, official name of the organization without suffix acronyms (LLC, Inc., etc.).
  • {{form.orgName}}
  • Open records law
  • If a public organization, select the open records law under which requests can be made.
  • {{form.openRecordsLaw}}
  • Notes
  • {{form.notes}}

Contacts

Contacts include links to a homepage and social media sites, phone and fax numbers, as well as email and physical addresses.

{% load formset_tags %}
{{formset.management_form}}
{% for form in formset %}
{% if form.errors %}
  • {{ form.non_field_errors|striptags }}
  • {% for field in form %} {%if field.errors%}
  • {{field.label}}: {{ field.errors|striptags }}
  • {%endif%} {% endfor %}
{% endif %} {{ form.id }} {{ form.person }} {{ form.org }}
  • Type{{ form.type }}
  • Contact{{ form.contact }}
  • {{form.role}}
  • {{ form.notes }}
{% endfor %}
{% if edit %} {% else %} {% endif %}
{%endblock%}