{% extends 'base.html' %} {% load i18n %} {% load static %} {% load custom_filters %} {% block styles %} {% endblock %} {% block title %}| {% trans "Account" %}{% endblock %} {% block content-title %}{% trans "Account" %}{% endblock %} {% block content %}

{{ user.account }}

{% if not user.account.is_for_all %}

{% blocktrans %}Personal account{% endblocktrans %}

{% else %}

{% blocktrans %}Collective account{% endblocktrans %}

{% endif %} {% if user.email %}

{{ user.email }}

{% endif %}

{% blocktrans %}Access to USB ports{% endblocktrans %}
{% blocktrans %}You are authenticated on the system. You can use the USB ports according to the assigned permissions. Insert your devices.{% endblocktrans %}
{% blocktrans %}Permits required{% endblocktrans %}
{% blocktrans %}Being a system user is required to use the USB ports but is not sufficient to access your devices. When registering a device your administrator assigns access permissions to it.{% endblocktrans %}

{% blocktrans %}For more information contact your administrator.{% endblocktrans %}

{% if not user.account.is_for_all %}

{% blocktrans %}My devices{% endblocktrans %}

{% trans "Registered" %}
{% if not ac_devices.exists %}

{% blocktrans %}You have no registered devices.{% endblocktrans %}

{% else %} {% for ad in ac_devices %}

{% trans "Type:" %} {{ ad.device.model.brand.type.name }}
{% trans "Brand:" %} {{ ad.device.model.brand.name }}
{% trans "Model:" %} {{ ad.device.model.name }}
{% trans "Identifier:" %} {{ ad.device.identifier }}

{% endfor %} {% endif %} {% else %}

{% trans "Devices" %}

{% trans "Register" %}
{% endif %}
{% blocktrans %}To register or modify the status of your devices contact your administrator.{% endblocktrans %}
{% endblock %}