{% extends "base.html" %} {% load i18n %} {% block content %}

{% if username %} {% trans "You are logged as" %} {{ username }}. {% else %} {% trans "Logged in." %} {% endif %} {% trans "Logout" %}

{{ special_role }}
{% if messages %} {% endif %}
{% if administration_services or power_services or exploitation_services%} {% endif %} {% if administration_services %}
{% for key, value in administration_services.items %} {% if value %}

{{ key }}

{% endif %} {% endfor %}
{% endif %} {% if power_services %}
{% for key, value in power_services.items %} {% if value %}

{{ key }}

{% endif %} {% endfor %}
{% endif %} {% if exploitation_services %}
{% for key, value in exploitation_services.items %} {% if value %}

{{ key }}

{% endif %} {% endfor %}
{% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}