{% extends "base.html" %} {% block title %}DNS Control Panel - HOME{% endblock %} {% block dashboard_stat %}

Dashboard Info

{% endblock %} {% block content %}
{% if current_user.role.name == 'Administrator' %}

Statistics

{{ domain_count }}

{% if domain_count > 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

Recent History

{% for history in histories %} {% endfor %}
Changed By Content Time Detail
{{ history.created_by }} {{ history.msg }} {{ history.created_on }}
{% endif %}

Hosted Domains

{% for domain in domains %} {% if current_user.role.name !='Administrator' %} {% else %} {% endif %} {% endfor %}
Name DNSSEC Type Serial Master Action
{{ domain.name }} {% if domain.dnssec %} {% else %} {% endif %} {{ domain.type }} {{ domain.serial }} {% if domain.master == '[]'%}N/A {% else %}{{ domain.master|display_master_name }}{% endif %}
{% endblock %} {% block extrascripts %} {% endblock %} {% block modals %} {% endblock %}