summaryrefslogtreecommitdiffstats
path: root/templates/admin/domain_edit.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/admin/domain_edit.html')
-rw-r--r--templates/admin/domain_edit.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/admin/domain_edit.html b/templates/admin/domain_edit.html
new file mode 100644
index 0000000..64e195c
--- /dev/null
+++ b/templates/admin/domain_edit.html
@@ -0,0 +1,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 %}