{% extends "base.html" %} {% load i18n %} {% load static %} {% block head %} {{block.super}} {% endblock %} {% block content %}

{% trans "Welcome!" %}

{% if serverinfo %}

{% trans "Server informations" %}

{% for row in serverinfo %} {% endfor %}
{{row.0}} {{row.1|default:""}}
{% if last_seen_clients %}

{% trans "Last seen clients" %}

{% for client in last_seen_clients %} {% with hostname=client.0 %} {% if hostname %} {% endif %} {% endwith %} {% endfor %}
{{hostname}} {{client.1}}
{% endif %}

{% trans "Filesystems" %}

{% for fs,val in filesystems.items %}
{{fs}}
{% endfor %}

Load

{% endif %}

{% trans "Fuss News" %}

{% endblock content %}