Mercurial > public > sg101
view gpp/templates/messages/options.html @ 13:777451a98f9d
Shoutbox work: shouts now have absolute URLs. Shouts can now be flagged as abuse. Minor tweak to breadcrumbs css. Added flag date to comments admin.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 16 Apr 2009 02:00:17 +0000 |
parents | dbd703f7d63a |
children | d51743322bb2 |
line wrap: on
line source
{% extends 'messages/base.html' %} {% block title %}Messages: Options{% endblock %} {% block options-class %}active{% endblock %} {% block messages_content %} <h3>Private Message Options</h3> {% if messages %} <ul class="user-messages"> {% for msg in messages %} <li>{{ msg }}</li> {% endfor %} </ul> {% endif %} <form action="." method="post"> <table> {{ form.as_table }} <tr> <td> </td> <td> <input type="submit" name="submit_button" value="Save" /> <input type="submit" name="submit_button" value="Cancel" /> </td> </tr> </table> </form> <br /> {% endblock %}