{% extends "granadilla/base.html" %} {% load granadilla_tags %} {% load i18n %} {% block subtitle %}{% trans "Devices" %}{% endblock %} {% block breadcrumbs %} {% granadilla_title %} › {% trans "Devices" %} {% endblock %} {% block content %}

{% trans "Devices" %}

{% trans "Add a device" %} {% if object_list %} {% regroup object_list|dictsort:"device_username" by device_username as device_list %} {% for initial in device_list %} {% for object in initial.list %} {% endfor %} {% endfor %}
{% trans "Owner" %} {% trans "Device name" %}
{{ object.device_fullname }} {{ object.device_name }} {% trans "Generate password" %} {% trans "Delete" %}
{% else %}

{% trans "You do not have any devices yet." %}

{% endif %} {% endblock %}