Files
test-auth/templates/sso/lookup/lookuplist.html

16 lines
309 B
HTML

{% extends "base.html" %}
{% block title %}User Lookup List{% endblock %}
{% block content %}
<p>More than one user was found matching your criteria:</p>
<ul>
{% for user in users %}
<li><a href="{% url sso.views.user_view user.username %}">{{ user.username }}</a></li>
{% endfor %}
</ul>
{% endblock %}