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/_menu.html | 6 ++++++ templates/admin/domain_create.html | 39 ++++++++++++++++++++++++++++++++++++++ templates/admin/domain_delete.html | 33 ++++++++++++++++++++++++++++++++ templates/admin/domain_edit.html | 19 +++++++++++++++++++ templates/admin/domains.html | 28 +++++++++++++++++++++++++++ templates/admin/identities.html | 14 ++++++++++++++ templates/admin/settings.html | 18 ++++++++++++++++++ templates/admin/users.html | 14 ++++++++++++++ 8 files changed, 171 insertions(+) create mode 100644 templates/admin/_menu.html create mode 100644 templates/admin/domain_create.html create mode 100644 templates/admin/domain_delete.html create mode 100644 templates/admin/domain_edit.html create mode 100644 templates/admin/domains.html create mode 100644 templates/admin/identities.html create mode 100644 templates/admin/settings.html create mode 100644 templates/admin/users.html (limited to 'templates/admin') diff --git a/templates/admin/_menu.html b/templates/admin/_menu.html new file mode 100644 index 0000000..8f0bc60 --- /dev/null +++ b/templates/admin/_menu.html @@ -0,0 +1,6 @@ + diff --git a/templates/admin/domain_create.html b/templates/admin/domain_create.html new file mode 100644 index 0000000..09dbc23 --- /dev/null +++ b/templates/admin/domain_create.html @@ -0,0 +1,39 @@ +{% extends "base.html" %} + +{% block title %}Add Domain - Admin{% endblock %} + +{% block content %} + {% block menu %} + {% include "admin/_menu.html" %} + {% endblock %} +
+{% endblock %} diff --git a/templates/admin/domain_delete.html b/templates/admin/domain_delete.html new file mode 100644 index 0000000..d47a673 --- /dev/null +++ b/templates/admin/domain_delete.html @@ -0,0 +1,33 @@ +{% extends "base.html" %} + +{% block title %}Delete {{ domain.domain }} - Admin{% endblock %} + +{% block content %} + {% block menu %} + {% include "admin/_menu.html" %} + {% endblock %} + + + +{% endblock %} 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 %} + +{% endblock %} diff --git a/templates/admin/domains.html b/templates/admin/domains.html new file mode 100644 index 0000000..b7925da --- /dev/null +++ b/templates/admin/domains.html @@ -0,0 +1,28 @@ +{% extends "base.html" %} + +{% block title %}{{ section.title }} - Admin{% endblock %} + +{% block content %} + {% block menu %} + {% include "admin/_menu.html" %} + {% endblock %} + +{% endblock %} diff --git a/templates/admin/identities.html b/templates/admin/identities.html new file mode 100644 index 0000000..86e70db --- /dev/null +++ b/templates/admin/identities.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} + +{% block title %}Identities - Admin{% endblock %} + +{% block content %} + {% block menu %} + {% include "admin/_menu.html" %} + {% endblock %} + +{% endblock %} diff --git a/templates/admin/settings.html b/templates/admin/settings.html new file mode 100644 index 0000000..e031347 --- /dev/null +++ b/templates/admin/settings.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} + +{% block title %}{{ section.title }} - Admin{% endblock %} + +{% block content %} + {% block menu %} + {% include "admin/_menu.html" %} + {% endblock %} + +{% endblock %} diff --git a/templates/admin/users.html b/templates/admin/users.html new file mode 100644 index 0000000..0b75b88 --- /dev/null +++ b/templates/admin/users.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} + +{% block title %}Users - Admin{% endblock %} + +{% block content %} + {% block menu %} + {% include "admin/_menu.html" %} + {% endblock %} + +{% endblock %} -- cgit v1.2.3