{% 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" %}

{% if object_list %} {% regroup object_list by device_fullname as device_list %} {% for initial in device_list %} {% for object in initial.list %}
{% trans "Back to the device list" %} {% trans "Generate password" %} {% trans "Delete device" %}
{% trans "Field" %} {% trans "Value" %}
{% trans "Owner" %} {{ object.device_username }}
{% trans "Name" %} {{ object.device_fullname }}
{% endfor %} {% endfor %} {% else %}

{% trans "This device does not exist." %}

{% trans "Back to the device list" %} {% endif %} {% endblock %}