{% extends "base.html" %} {% block header %} {# Show the setup name, as set in the config file, as page title. Don't escape HTML entities. #}

{{ setupname|safe }}

{{ super() }} {% endblock %} {% 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 %}
{# Link to the password login #} Password login {{ super() }} {% endblock %}