summaryrefslogtreecommitdiffstats
path: root/templates/admin/domain_edit.html
blob: 64e195ce2b3122c42ac95a93b68e8e84a335f039 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "base.html" %}

{% block title %}{{ domain.domain }} - Admin{% endblock %}

{% block content %}
    {% block menu %}
        {% include "admin/_menu.html" %}
    {% endblock %}
    <form action="." method="POST">
        {% csrf_token %}
        {% for field in form %}
            {% include "forms/_field.html" %}
        {% endfor %}
        <div class="buttons">
            <a href="{{ domain.urls.delete }}" class="button delete">Delete</a>
            <button>Save</button>
        </div>
    </form>
{% endblock %}