view gpp/templates/messages/compose_tab.html @ 431:0d91176cf9b3

More work on #211. The compose view now returns the tab fragment HTML so errors can be displayed correctly.
author Brian Neal <bgneal@gmail.com>
date Fri, 06 May 2011 00:02:55 +0000
parents 9df368d9775d
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>&nbsp;</td>
   <td>
      {% comment_dialogs %}
      <input type="submit" name="submit_button" value="Send" />
   </td>
</tr>
</table>
</form>