Mercurial > public > sg101
view gpp/templates/messages/compose.html @ 147:152d77265da6
Implement #38: add function to mark user as a spammer. Display only active members on member list. Display login form as table (not sure why wasn't doing this before).
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 13 Dec 2009 08:11:16 +0000 |
parents | c515b7401078 |
children | 6a5549c2efb5 |
line wrap: on
line source
{% extends 'messages/base.html' %} {% load core_tags %} {% block title %}Messages: Compose{% endblock %} {% block custom_js %} {{ compose_form.media }} {% endblock %} {% block compose-class %}class="active"{% endblock %} {% block messages_content %} <h3>Compose Message</h3> <form action="." method="post"> <table> {{ compose_form.as_table }} <tr> <td> </td> <td> {% comment_dialogs %} <input type="submit" name="submit_button" value="Send" /> <input type="submit" name="submit_button" value="Cancel" /> </td> </tr> </table> </form> <br /> {% endblock %}