view gpp/templates/messages/options_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
line wrap: on
line source
{% if messages %}
<ul id="message-opts-messages" class="user-messages">
   {% for msg in messages %}
      <li{% if msg.tags %} class="{{ msg.tags }}"{% endif %}>{{ msg }}</li>
   {% endfor %}
</ul>
{% endif %}
<form action="." method="post" onsubmit="return submitOptions(this);">{% csrf_token %}
<table>
{{ form.as_table }}
<tr>
   <td>&nbsp;</td>
   <td>
      <input type="submit" name="submit_button" value="Save" />
   </td>
</tr>
</table>
</form>