Mercurial > public > sg101
view gpp/templates/messages/options_tab.html @ 425:76ba9478ebbd
Initial beta-test commit of a revamped, jquery ui tab-based PM system. This is for #211.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 26 Apr 2011 00:16:35 +0000 |
parents | |
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> </td> <td> <input type="submit" name="submit_button" value="Save" /> </td> </tr> </table> </form>