From 5b34ea46c3f458a174c5443714ade43c21defdac Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Wed, 16 Nov 2022 21:42:25 -0700 Subject: Call it admin rather than system settings --- templates/admin/domain_edit.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 templates/admin/domain_edit.html (limited to 'templates/admin/domain_edit.html') 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 %} +
+ {% csrf_token %} + {% for field in form %} + {% include "forms/_field.html" %} + {% endfor %} +
+ Delete + +
+
+{% endblock %} -- cgit v1.2.3