{% extends 'admin/master.html' %} {% block body %} {{ super() }}
{% if current_user.is_authenticated %} {% block tools %} {% block application_panel %} {% endblock application_panel %} {% block security_panel %} {% if tools_panels.get("security_panel_on", 0) %}
Security
{% if tools_panels.get("webadmin_security_on", 0) %} Webadmin {% endif %} {% if tools_panels.get("security_builtin_controllers_on", 0) %} Builtin controllers {% endif %} {% if tools_panels.get("security_certificates_on", 0) %} Certificates {% endif %}
{% endif %} {% endblock security_panel %} {% block system_panel %}
System

Uptime: {{sys_uptime}}

{% endblock system_panel %} {% endblock tools %} {% else %} Not logged in {% endif %}
{% endblock body %}