{% block head %}
{% block title %}
DNS Control Panel
{% endblock %}
{% endblock %} {% block pageheader %}
{% block pageheader_userinfo %} {% if current_user.username != 'Anonymous' %}
{% if current_user.is_authenticated() %} {{ current_user.firstname }} {% endif %}
My Profile
Log Out
{% endif %} {% endblock %}
{% endblock %}
{% block pagecontainer %}
{% if current_user.username != 'Anonymous' %}
Dashboard
{% if request.path == "/dashboard" %}
{% endif %}
{% if current_user.role.name == 'Administrator' %}
Admin
{% if request.path.startswith('/admin') %}
{% endif %}
Admin Console
Manage Domain
Manage User
History
{% endif %} {% endif %}
{% block dashboard_stat %} {% endblock %} {% block content %} {% endblock %}
{% endblock %}
{% block scripts %} {% endblock %}