Massive reworking on the user lookup form to support various other lookup types (Character/Reddit ID)

This commit is contained in:
2010-03-23 12:59:16 +00:00
parent fa4a084292
commit fe54116057
6 changed files with 93 additions and 52 deletions

View 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 %}