view gpp/templates/messages/options.html @ 11:cc8eb028def1

Update jquery-ui and theme version that is hosted on google. In preparation for having jquery on every page (?), make it so that the autocomplete plug is using the 'global' jquery, and not the one that came with it. It seems to work okay with jquery 1.3.2.
author Brian Neal <bgneal@gmail.com>
date Tue, 14 Apr 2009 02:35:35 +0000
parents dbd703f7d63a
children d51743322bb2
line wrap: on
line source
{% extends 'messages/base.html' %}
{% block title %}Messages: Options{% endblock %}
{% block options-class %}active{% endblock %}
{% block messages_content %}
<h3>Private Message Options</h3>
{% if messages %}
<ul class="user-messages">
   {% for msg in messages %}
      <li>{{ msg }}</li>
   {% endfor %}
</ul>
{% endif %}
<form action="." method="post">
<table>
{{ form.as_table }}
<tr>
   <td>&nbsp;</td>
   <td>
      <input type="submit" name="submit_button" value="Save" />
      <input type="submit" name="submit_button" value="Cancel" />
   </td>
</tr>
</table>
</form>
<br />
{% endblock %}