{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block title %} {% if site.domain %}{{ site.domain }}: {% endif %}Dashboard {% endblock %} {% block nav_path %}{{ site.domain }} › Dashboard{% endblock %} {% block content %}

Status at {{ time_checked|date:"Y-m-d H:i"}}

{% if hostname %}

Hostname: {{ hostname }}

{% endif %}

Settings Flags

{% for flag in settings_flags %} {{ flag.name }}: {{flag.actual}}   {% endfor %}

Version Information

{% if python_packages %}

Python Packages: {{ python_packages }}

{% endif %} {% if gitversion %} Most Recent Commit:
{{ gitversion }}
{% endif %}

Recent Log Entries

{% if error_msgs %}

Errors

{% for error_msg in error_msgs %}

{{ error_msg.datetime }}: {{ error_msg.msg }}

{% endfor %} {% endif %} {% if warning_msgs %}

Warnings

{% for warning_msg in warning_msgs %}

{{ warning_msg.datetime }}: {{ warning_msg.msg }}

{% endfor %} {% endif %} {% if info_msgs %}

Information

{% for info_msg in info_msgs %}

{{ info_msg.datetime }}: {{ info_msg.msg }}

{% endfor %} {% endif %}
{% endblock %} {% block footer %} All Logs Logout {% endblock %}