diff options
Diffstat (limited to 'templates/admin/domain_create.html')
| -rw-r--r-- | templates/admin/domain_create.html | 20 | 
1 files changed, 11 insertions, 9 deletions
diff --git a/templates/admin/domain_create.html b/templates/admin/domain_create.html index 09dbc23..dcc57fa 100644 --- a/templates/admin/domain_create.html +++ b/templates/admin/domain_create.html @@ -1,11 +1,8 @@ -{% extends "base.html" %} +{% extends "settings/base.html" %}  {% block title %}Add Domain - Admin{% endblock %}  {% block content %} -    {% block menu %} -        {% include "admin/_menu.html" %} -    {% endblock %}      <form action="." method="POST">          <h1>Add A Domain</h1>          <p> @@ -28,12 +25,17 @@              service domain.          </p>          {% csrf_token %} -        {% for field in form %} -            {% include "forms/_field.html" %} -        {% endfor %} +        <fieldset> +            <legend>Domain Details</legend> +            {% include "forms/_field.html" with field=form.domain %} +            {% include "forms/_field.html" with field=form.service_domain %} +        </fieldset> +        <fieldset> +            <legend>Access Control</legend> +            {% include "forms/_field.html" with field=form.public %} +        </fieldset>          <div class="buttons"> -            <a href="{{ domain.urls.delete }}" class="button delete">Delete</a> -            <button>Save</button> +            <button>Create</button>          </div>      </form>  {% endblock %}  | 
