Mercurial > public > sg101
comparison gpp/templates/bio/member_search.html @ 149:ab7830b067b3
Implement ticket #40. Added a simple way to search for usernames and then view their profile. Moved this ajax username search feature out of the messages app and into core.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 14 Dec 2009 05:07:28 +0000 |
parents | |
children | 6a5549c2efb5 |
comparison
equal
deleted
inserted
replaced
148:35a0e6345815 | 149:ab7830b067b3 |
---|---|
1 {% extends "base.html" %} | |
2 {% block title %}Member Search{% endblock %} | |
3 {% block custom_js %} | |
4 {{ form.media }} | |
5 {% endblock %} | |
6 {% block content %} | |
7 <h2>Member Search</h2> | |
8 <p>Looking for a member? Start typing a username in the form below.</p> | |
9 <form action="." method="post"> | |
10 <fieldset> | |
11 <legend>Member Search</legend> | |
12 {{ form.as_p }} | |
13 <p><input type="submit" value="View Profile" /></p> | |
14 </fieldset> | |
15 </form> | |
16 {% endblock %} |