Mercurial > public > sg101
view gpp/templates/messages/compose_tab.html @ 505:a5d11471d031
Refactor the logic in the rate limiter decorator. Check to see if the request was ajax, as the ajax view always returns 200. Have to decode the JSON response to see if an error occurred or not.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 03 Dec 2011 19:13:38 +0000 |
parents | 0d91176cf9b3 |
children |
line wrap: on
line source
{% load url from future %} {% load core_tags %} {% load script_tags %} {% script_tags 'markitup' %} {% if messages %} <ul class="user-messages"> {% for msg in messages %} <li{% if msg.tags %} class="{{ msg.tags }}"{% endif %}>{{ msg }}</li> {% endfor %} </ul> {% endif %} <form action="." method="post" id="msg_compose_form" onsubmit="return messageSubmit(this);" > <table> {{ compose_form.as_table }} <tr> <td> </td> <td> {% comment_dialogs %} <input type="submit" name="submit_button" value="Send" /> </td> </tr> </table> </form>