diff --git a/core/templates/base.html b/core/templates/base.html
index e1fb172..0f413fd 100644
--- a/core/templates/base.html
+++ b/core/templates/base.html
@@ -37,6 +37,37 @@
@@ -64,6 +95,95 @@
Billing
{% endif %}
+ {% if user.is_superuser %}
+
diff --git a/core/templates/manage/overview.html b/core/templates/manage/overview.html
new file mode 100644
index 0000000..4743616
--- /dev/null
+++ b/core/templates/manage/overview.html
@@ -0,0 +1,9 @@
+{% extends "base.html" %}
+{% block content %}
+
+
+
hello
+ {{ perms.app }}
+
+
+{% endblock %}
diff --git a/core/views/manage/permissions.py b/core/views/manage/permissions.py
new file mode 100644
index 0000000..d07e288
--- /dev/null
+++ b/core/views/manage/permissions.py
@@ -0,0 +1,6 @@
+from django.contrib.auth.mixins import LoginRequiredMixin, UserPassesTestMixin
+
+class SuperUserRequiredMixin(LoginRequiredMixin, UserPassesTestMixin):
+
+ def test_func(self):
+ return self.request.user.is_superuser
\ No newline at end of file
diff --git a/core/views/manage/threshold.py b/core/views/manage/threshold.py
new file mode 100644
index 0000000..e69de29