view 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
line wrap: on
line source
{% extends "base.html" %}
{% block title %}Member Search{% endblock %}
{% block custom_js %}
   {{ form.media }}
{% endblock %}
{% block content %}
<h2>Member Search</h2>
<p>Looking for a member? Start typing a username in the form below.</p>
<form action="." method="post">
<fieldset>
<legend>Member Search</legend>
   {{ form.as_p }}
   <p><input type="submit" value="View Profile" /></p>
</fieldset>
</form>
{% endblock %}