{% 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
{% endblock %} {% block content %}
Server Statistics
{% for statistic in statistics %} {% endfor %}
Docs Statistic Value
{{ statistic['name'] }} {{ statistic['value'] }}
Server Configuration
{% for config in configs %} {% endfor %}
Docs Name Value
{{ config['name'] }} {{ config['value'] }}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}