{% extends "base.html" %} {% set active_page = "dashboard" %} {% block title %}Dashboard - {{ SITE_NAME }}{% endblock %} {% block dashboard_stat %}

Dashboard

{% endblock %} {% import 'applied_change_macro.html' as applied_change_macro %} {% block content %}

Statistics

{{ domain_count }}

{% if domain_count > 1 %}Domains{% else %}Domain{% endif %}

{% if current_user.role.name in ['Administrator', 'Operator'] %} {% endif %}
{% if current_user.role.name in ['Administrator', 'Operator'] or SETTING.get('allow_user_view_history') %}

Recent History

{% for history in histories %} {% endfor %}
Log Message Timestamp User Actions
{{ history.history.msg }} {{ history.history.created_on | format_datetime_local }} {{ history.history.created_by }}
{% endif %}

Zones {% if show_bg_domain_button %} {% endif %}

{% for boxId in custom_boxes.order %}
Name DNSSEC Type Serial Primary Account Actions
{% endfor %}
{% endblock %} {% block head_styles %} {% endblock %} {% block extrascripts %} {% endblock %} {% block modals %} {% endblock %}