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

-
- -
- - -
-
- -
- -
-
-
- {{ domains|length }} -
-
- {% if domains|length > 1 %}Domains{% else %}Domain{% endif %} -
-
-
-
-
- -
- -
-
-
- {{ users|length }} -
-
- {% if users|length > 1 %}Users{% else %}User{% endif %} -
-
-
-
-
- -
- -
-
-
- {{ history_number }} -
-
- {% if history_number > 1 %}Histories{% else %}History{% endif %} -
-
-
-
-
- -
- -
-
-
- {{ uptime|display_second_to_time }} -
-
- Uptime -
-
-
-
-
- + +
+

+ History Recent PowerDNS-Admin events +

+ +
{% endblock %} {% block content %} -
-
- -
-
- -
-
-
- Server Statistics -
-
- - - - -
-
-
- - - - - - - - - - {% for statistic in statistics %} - - - - - - {% endfor %} - -
- Docs - - Statistic - - Value -
- - - {{ statistic['name'] }} - - {{ statistic['value'] }} -
-
-
- -
-
- -
-
- -
-
-
- Server Configuration -
-
- - - - -
-
-
- - - - - - - - - - {% for config in configs %} - - - +
+
+
+
+
+

Statistics

+
+
+
- Docs - - Name - - Value -
- - - {{ config['name'] }} -
+ + + + + + + + + {% for statistic in statistics %} + + + + + + {% endfor %} + +
DocsStatisticValue
{{ statistic['name'] }}{{ statistic['value'] }}
+
+ +
+ +
+ +
+ +
+
+
+
+

Configuration

+
+
+ + + + + + + + + + {% for config in configs %} + + + - {% endfor %} - -
DocsStatisticValue
{{ config['name'] }} {{ config['value'] }}
-
-
- -
-
+ {% endfor %} + + + + + + + + + + + {% endblock %} - -{% block scripts %} -{{ super() }} - - - - - - - - - - +{% block extrascripts %} - {% endblock %}