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

Dashboard Info

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

Statistics

{{ domain_count }}

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

{% if current_user.role.name in ['Administrator', 'Operator'] %} {% endif %}

Recent History

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