annotate gpp/templates/messages/compose.html @ 348:d1b11096595b

Fix #168; when nailing a spammer, clear their profile text fields. Guard against topics and forums that don't exist when deleting posts in the signal handler. Make the forum stats template tag only display the latest active users.
author Brian Neal <bgneal@gmail.com>
date Wed, 02 Mar 2011 02:18:28 +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 %}