Mercurial > public > sg101
view gpp/templates/messages/options_tab.html @ 567:0a8e6a9ccf53
Tweaks to the contests application: show the winners on the list page.
Minor presentation changes on the detail template.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 07 Mar 2012 18:12:02 -0600 |
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> </td> <td> <input type="submit" name="submit_button" value="Save" /> </td> </tr> </table> </form>