annotate gpp/templates/messages/compose.html @ 339:b871892264f2

Adding the sg101 IRC bot code to SVN. This code is pretty rough and needs love, but it gets the job done (one of my first Python apps). This fixes #150.
author Brian Neal <bgneal@gmail.com>
date Sat, 26 Feb 2011 21:27:49 +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 %}