Mercurial > public > sg101
comparison gpp/templates/messages/compose.html @ 1:dbd703f7d63a
Initial import of sg101 stuff from private repository.
author | gremmie |
---|---|
date | Mon, 06 Apr 2009 02:43:12 +0000 |
parents | |
children | c515b7401078 |
comparison
equal
deleted
inserted
replaced
0:900ba3c7b765 | 1:dbd703f7d63a |
---|---|
1 {% extends 'messages/base.html' %} | |
2 {% block title %}Messages: Compose{% endblock %} | |
3 {% block custom_js %} | |
4 {{ compose_form.media }} | |
5 {% endblock %} | |
6 {% block compose-class %}class="active"{% endblock %} | |
7 {% block messages_content %} | |
8 <h3>Compose Message</h3> | |
9 <form action="." method="post"> | |
10 <table> | |
11 {{ compose_form.as_table }} | |
12 <tr> | |
13 <td> </td> | |
14 <td> | |
15 <input type="submit" name="submit_button" value="Send" /> | |
16 <input type="submit" name="submit_button" value="Cancel" /> | |
17 </td> | |
18 </tr> | |
19 </table> | |
20 </form> | |
21 <br /> | |
22 {% endblock %} |