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