diff --git a/app/templates/admin.html b/app/templates/admin.html
index d605aa5..83dcbad 100644
--- a/app/templates/admin.html
+++ b/app/templates/admin.html
@@ -1,232 +1,118 @@
{% extends "base.html" %}
-{% block head %}
- {{ super() }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-{% endblock %}
{% block title %}
DNS Control Panel - Admin Console{% endblock %}
{% block dashboard_stat %}
-
-
- Admin Console
-
-
- -
-
- Home
-
-
- -
- Admin Console
-
-
-
-
-
-
-
+
+
{% endblock %}
{% block content %}
-
-
-
-
-
-
-
-
-
- Server Statistics
-
-
-
-
-
-
-
-
- Docs
- |
-
- Statistic
- |
-
- Value
- |
-
-
-
- {% for statistic in statistics %}
-
-
-
- |
-
- {{ statistic['name'] }}
- |
-
- {{ statistic['value'] }}
- |
-
- {% endfor %}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Server Configuration
-
-
-
-
-
-
-
-
- Docs
- |
-
- Name
- |
-
- Value
- |
-
-
-
- {% for config in configs %}
-
-
-
- |
-
- {{ config['name'] }}
- |
+
+
+
+
+
+
+
+
+
+ Docs |
+ Statistic |
+ Value |
+
+
+
+ {% for statistic in statistics %}
+
+ |
+ {{ statistic['name'] }} |
+ {{ statistic['value'] }} |
+
+ {% endfor %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Docs |
+ Statistic |
+ Value |
+
+
+
+ {% for config in configs %}
+
+ |
+ {{ config['name'] }} |
{{ config['value'] }}
|
- {% endfor %}
-
-
-
-
-
-
-
+ {% endfor %}
+
+
+
+
+
+
+
+
+
+
+
{% endblock %}
-
-{% block scripts %}
-{{ super() }}
-
-
-
-
-
-
-
-
-
-
+{% block extrascripts %}
-
{% endblock %}