view gpp/templates/messages/compose_tab.html @ 428:77b3b01843b5

Gave the beta private messages a 'compose to' view. Tweaked the color of the tables to match the jquery ui theme.
author Brian Neal <bgneal@gmail.com>
date Sun, 01 May 2011 02:11:48 +0000
parents 76ba9478ebbd
children d0f0800eef0c
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="{% url 'messages-beta_compose' %}" method="post">{% csrf_token %}
<table>
{{ compose_form.as_table }}
<tr>
   <td>&nbsp;</td>
   <td>
      {% comment_dialogs %}
      <input type="submit" name="submit_button" value="Send" />
   </td>
</tr>
</table>
</form>