Mercurial > public > sg101
annotate gpp/templates/messages/options_tab.html @ 527:645025056dfa
Adding some management commands to the downloads application to help manage
the SG101 MP3 compilations. Added a command to generate a HTML report of all
the downloads in a given category. Added a command that generates a bash
script that wgets all the files in a category.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 21 Dec 2011 01:08:21 +0000 |
parents | 76ba9478ebbd |
children |
rev | line source |
---|---|
bgneal@425 | 1 {% if messages %} |
bgneal@425 | 2 <ul id="message-opts-messages" class="user-messages"> |
bgneal@425 | 3 {% for msg in messages %} |
bgneal@425 | 4 <li{% if msg.tags %} class="{{ msg.tags }}"{% endif %}>{{ msg }}</li> |
bgneal@425 | 5 {% endfor %} |
bgneal@425 | 6 </ul> |
bgneal@425 | 7 {% endif %} |
bgneal@425 | 8 <form action="." method="post" onsubmit="return submitOptions(this);">{% csrf_token %} |
bgneal@425 | 9 <table> |
bgneal@425 | 10 {{ form.as_table }} |
bgneal@425 | 11 <tr> |
bgneal@425 | 12 <td> </td> |
bgneal@425 | 13 <td> |
bgneal@425 | 14 <input type="submit" name="submit_button" value="Save" /> |
bgneal@425 | 15 </td> |
bgneal@425 | 16 </tr> |
bgneal@425 | 17 </table> |
bgneal@425 | 18 </form> |