{% trans 'WiFi username and passwords' %}
{% if users %}
{% trans 'Username' %}
{% trans 'Password' %}
{% for row in users %}
{% for cell in row %}
{{ cell }}
{% endfor %}
{% endfor %}
{% else %}
No user credential data found.
If you have upgraded from django-freeradius, please note it is not possible to import user credential data.
If you are an operator, please contact system administrator for more information.
{% endif %}