{# templates/organization/reserved_domain_edit.html #} {# This template is used to add (or edit) a OrganizationReservedDomain #} {% extends "template_base.html" %} {% block title %}{% if reserved_domain_id %}Edit Reserved Domain{% else %}Add Reserved Domain{% endif %}{% endblock %} {% block content %}

< Back to Reserved Domains

{% if reserved_domain_id %}Edit Reserved Domain{% else %}Add Reserved Domain{% endif %}

{% if error_message %}

{{ error_message }}

{% endif %}
{% csrf_token %} {# Subdomain of WeVote.US #}
.WeVote.US
{# Full Domain Name Website Address #}
or cancel



{% if organization_domain_list or reserved_domain_list %}

Duplicate Reserved Domain Found

{% endif %} {% for organization in organization_domain_list %} {% if organization.chosen_domain_string or organization.chosen_domain_string2 or organization.chosen_domain_string3 %} {{ organization.chosen_domain_string }}{% if organization.chosen_domain_string2 %}, {{organization.chosen_domain_string2|default_if_none:""}}{% endif %}{% if organization.chosen_domain_string3 %}, {{organization.chosen_domain_string3|default_if_none:""}}{% endif %}   edit
{% endif %} {% if organization.chosen_subdomain_string %} {{ organization.chosen_subdomain_string }}.WeVote.US   edit
{% endif %} {% endfor %} {% for reserved_domain in reserved_domain_list %} {% if reserved_domain.full_domain_string %} {{reserved_domain.full_domain_string}} {% elif reserved_domain.subdomain_string %} {{reserved_domain.subdomain_string}}.WeVote.US {% endif %} edit
{% endfor %} {% endblock %}