mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-23 06:39:25 +00:00
16 lines
309 B
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 %}
|