view gpp/templates/messages/options.html @ 285:8fd4984d5c3b

This is a first rough commit for #95, adding the ability to embed YouTube videos in forum posts. Some more polish and testing needs to happen at this point. I wanted to get all these changes off my hard drive and into the repository.
author Brian Neal <bgneal@gmail.com>
date Thu, 14 Oct 2010 02:39:35 +0000
parents 6a5549c2efb5
children
line wrap: on
line source
{% extends 'messages/base.html' %}
{% block title %}Messages: Options{% endblock %}
{% block options-class %}active{% endblock %}
{% block messages_content %}
<h3>Private Message Options</h3>
{% 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">{% csrf_token %}
<table>
{{ form.as_table }}
<tr>
   <td>&nbsp;</td>
   <td>
      <input type="submit" name="submit_button" value="Save" />
      <input type="submit" name="submit_button" value="Cancel" />
   </td>
</tr>
</table>
</form>
<br />
{% endblock %}