annotate gpp/templates/messages/compose.html @ 271:4746df47a538

Follow on to last rev (r292) for #126. Missed updating a shoutbox template. Also the repoze.timeago package uses UTC time by default. Change this to local time for now until we decide to switch over to UTC for everything.
author Brian Neal <bgneal@gmail.com>
date Sun, 26 Sep 2010 17:42:00 +0000
parents 6a5549c2efb5
children
rev   line source
gremmie@1 1 {% extends 'messages/base.html' %}
bgneal@133 2 {% load core_tags %}
gremmie@1 3 {% block title %}Messages: Compose{% endblock %}
gremmie@1 4 {% block custom_js %}
gremmie@1 5 {{ compose_form.media }}
gremmie@1 6 {% endblock %}
gremmie@1 7 {% block compose-class %}class="active"{% endblock %}
gremmie@1 8 {% block messages_content %}
gremmie@1 9 <h3>Compose Message</h3>
bgneal@194 10 <form action="." method="post">{% csrf_token %}
gremmie@1 11 <table>
gremmie@1 12 {{ compose_form.as_table }}
gremmie@1 13 <tr>
gremmie@1 14 <td>&nbsp;</td>
gremmie@1 15 <td>
bgneal@133 16 {% comment_dialogs %}
gremmie@1 17 <input type="submit" name="submit_button" value="Send" />
gremmie@1 18 <input type="submit" name="submit_button" value="Cancel" />
gremmie@1 19 </td>
gremmie@1 20 </tr>
gremmie@1 21 </table>
gremmie@1 22 </form>
gremmie@1 23 <br />
gremmie@1 24 {% endblock %}