summaryrefslogtreecommitdiffstats
path: root/templates/admin/settings.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/admin/settings.html')
-rw-r--r--templates/admin/settings.html18
1 files changed, 0 insertions, 18 deletions
diff --git a/templates/admin/settings.html b/templates/admin/settings.html
deleted file mode 100644
index e031347..0000000
--- a/templates/admin/settings.html
+++ /dev/null
@@ -1,18 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}{{ section.title }} - 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">
- <button>Save</button>
- </div>
- </form>
-{% endblock %}