{% extends 'base.html' %} {% block content %}

Apps

{{ apps | length }} apps found in context {{ session['context_uuid'] }}
{% if apps %} {% for app in apps %} {% endfor %} {% else %} {% endif %}
UUID Status Type Device 1 Device 2
{{ app.app_id.app_uuid.uuid }} {{ ase.Name(app.app_status).replace('QKDAPPSTATUS_', '') }} {{ ate.Name(app.app_type).replace('QKDAPPTYPES_', '').replace('CLIENT', 'EXTERNAL') }}
  • {{ device_names.get(app.local_device_id.device_uuid.uuid, app.local_device_id.device_uuid.uuid) }}
  • {% if app.remote_device_id.device_uuid.uuid %}
  • {{ device_names.get(app.remote_device_id.device_uuid.uuid, app.remote_device_id.device_uuid.uuid) }}
  • {% endif %}
    No apps found
    {% endblock %}