view gpp/templates/messages/compose.html @ 58:02e5dfa830cc

#11 Update Blueprints to 0.9. Also update the conditional IE specific include of the ie.css file. Hopefully this will resolve some issues seen with IE8.
author Brian Neal <bgneal@gmail.com>
date Wed, 24 Jun 2009 00:18:53 +0000
parents dbd703f7d63a
children c515b7401078
line wrap: on
line source
{% extends 'messages/base.html' %}
{% 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>&nbsp;</td>
   <td>
      <input type="submit" name="submit_button" value="Send" />
      <input type="submit" name="submit_button" value="Cancel" />
   </td>
</tr>
</table>
</form>
<br />
{% endblock %}