Mercurial > public > sg101
annotate gpp/templates/messages/compose_tab.html @ 429:d0f0800eef0c
Making the jquery tabbed version of the messages app the current version and removing the old. Also figured out how to dynamically update the base template's count of unread messages when messages are read.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 03 May 2011 02:56:58 +0000 |
parents | 76ba9478ebbd |
children | 9df368d9775d |
rev | line source |
---|---|
bgneal@425 | 1 {% load url from future %} |
bgneal@425 | 2 {% load core_tags %} |
bgneal@425 | 3 {% load script_tags %} |
bgneal@425 | 4 {% script_tags 'markitup' %} |
bgneal@425 | 5 {% if messages %} |
bgneal@425 | 6 <ul class="user-messages"> |
bgneal@425 | 7 {% for msg in messages %} |
bgneal@425 | 8 <li{% if msg.tags %} class="{{ msg.tags }}"{% endif %}>{{ msg }}</li> |
bgneal@425 | 9 {% endfor %} |
bgneal@425 | 10 </ul> |
bgneal@425 | 11 {% endif %} |
bgneal@429 | 12 <form action="{% url 'messages-compose' %}" method="post">{% csrf_token %} |
bgneal@425 | 13 <table> |
bgneal@425 | 14 {{ compose_form.as_table }} |
bgneal@425 | 15 <tr> |
bgneal@425 | 16 <td> </td> |
bgneal@425 | 17 <td> |
bgneal@425 | 18 {% comment_dialogs %} |
bgneal@425 | 19 <input type="submit" name="submit_button" value="Send" /> |
bgneal@425 | 20 </td> |
bgneal@425 | 21 </tr> |
bgneal@425 | 22 </table> |
bgneal@425 | 23 </form> |