mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-23 22:59:30 +00:00
Massive reworking on the user lookup form to support various other lookup types (Character/Reddit ID)
This commit is contained in:
15
templates/sso/lookup/lookuplist.html
Normal file
15
templates/sso/lookup/lookuplist.html
Normal file
@@ -0,0 +1,15 @@
|
||||
{% 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="/users/{{ user.name }}/">{{ user.name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user