Added User Lookup feature

This commit is contained in:
2010-03-10 00:55:39 +00:00
parent a6cbb2744b
commit 4ccdaf5187
6 changed files with 72 additions and 26 deletions

View File

@@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block title %}User Lookup{% endblock %}
{% block content %}
<form action="/users/" method="post">
<table>
{{ form.as_table }}
</table>
<input type="submit" value="Lookup" />
</form>
{% endblock %}