{% extends "base.html" %} {% block main %}
{% for user in users %} {# Show an item per user, consisting of the username, and the avatar, linking to the touchkey login #}
{{ user.name }}
Avatar of {{ user.name }}
{% endfor %}

{{ super() }} {% endblock %} {% block barcodewebsocket %} document.location = "/?barcode=" + e.data; {% endblock %}