{% extends "base.html" %} {% load i18n %} {% block subtitle %} {% trans 'Welcome' %} {{ user.first_name }} {{ user.last_name }} {% endblock %} {% block main %}

{% if user.is_staff %} {% trans "On this site, you can organise your training content." %} {% else %} {% trans "On this site, you can grab your training content." %} {% endif %} {% trans "For more information about this site, please read the documentation." %}

{% if user.is_staff %}
{% for localserver in localservers %} {% endfor %}
{% trans "Name" %} {% trans "Connected" %} {% trans "Last connection" %} {% trans "Connection Time" %} {% trans "Updated" %} {% trans "Remaining Updates" %}
{{ localserver.name }} {% if localserver.is_connected %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %} {{ localserver.last_connection }} {{ localserver.uptime }} {% if localserver.is_updated %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %} {{ localserver.needed_updates }}
{% endif %} {% endblock %}