Mercurial > public > sg101
view gpp/templates/messages/compose.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 | c515b7401078 |
line wrap: on
line source
{% extends 'messages/base.html' %} {% block title %}Messages: Compose{% endblock %} {% block custom_js %} {{ compose_form.media }} {% endblock %} {% block compose-class %}class="active"{% endblock %} {% block messages_content %} <h3>Compose Message</h3> <form action="." method="post"> <table> {{ compose_form.as_table }} <tr> <td> </td> <td> <input type="submit" name="submit_button" value="Send" /> <input type="submit" name="submit_button" value="Cancel" /> </td> </tr> </table> </form> <br /> {% endblock %}