{# templates/organization/reserved_domain_list.html #} {% extends "template_base.html" %} {% block title %}Reserved Domains{% endblock %} {% block content %}

< Back to Endorsers

Reserved Domains

Add New Reserved Domain Address

{% csrf_token %} {% if domain_search %} clear search  {% endif %}
{% if organization_domain_list %}

Reserved by Endorsers

{% 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 %} {% else %}

(no organization domains found)

{% endif %} {% if reserved_domain_list %}

Reserved by We Vote

{% 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 %} {% else %}

(no reserved domains found)

{% endif %}

{#

#} {# Import Reserved Domains From Master Server#} {#

#} {% endblock %}