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

Dashboard Info

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

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 }} {% if domain.serial == 0 %}{{ domain.notified_serial }}{% else %}{{domain.serial}}{% endif %} {% if domain.master == '[]'%}N/A {% else %}{{ domain.master|display_master_name }}{% endif %}
{% endblock %} {% block extrascripts %} {% endblock %} {% block modals %} {% endblock %}