{% extends 'base.html' %} {% load i18n %} {% load static %} {% block content-title %}USBSecurity{% endblock %} {% block content %}

{% blocktrans %}USB control system{% endblocktrans %}

{% blocktrans %}USBSecurity is a set of programs for managing access control to USB ports on your computer.{% endblocktrans %}

{% if not user.is_authenticated %}
{% blocktrans %}USB devices{% endblocktrans %}
{% url 'login' as url_login %} {% blocktrans %}To access the USB ports on this computer proceed to Login and then connect the devices.{% endblocktrans %}
{% blocktrans %}The order is necessary first Login.{% endblocktrans %}
{% else %}
{% blocktrans %}Disclaimer of liability{% endblocktrans %}
{% blocktrans %}As long as the session remains open, it is responsible for events occurring on the computer due to connected USB devices.{% endblocktrans %}
{% endif %}

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

{% endblock %}