annotate gpp/templates/messages/compose.html @ 388:c3231af55778

For #191; r410 is wrong: it is returning the wrong posts. Rework. MySQL is not using an index on our query, and it is taking 10+ seconds. Replace this slow query with a loop that loops over the public forums, then sorts and returns the posts.
author Brian Neal <bgneal@gmail.com>
date Sat, 19 Mar 2011 05:03:51 +0000
parents 6a5549c2efb5
children
rev   line source
gremmie@1 1 {% extends 'messages/base.html' %}
bgneal@133 2 {% load core_tags %}
gremmie@1 3 {% block title %}Messages: Compose{% endblock %}
gremmie@1 4 {% block custom_js %}
gremmie@1 5 {{ compose_form.media }}
gremmie@1 6 {% endblock %}
gremmie@1 7 {% block compose-class %}class="active"{% endblock %}
gremmie@1 8 {% block messages_content %}
gremmie@1 9 <h3>Compose Message</h3>
bgneal@194 10 <form action="." method="post">{% csrf_token %}
gremmie@1 11 <table>
gremmie@1 12 {{ compose_form.as_table }}
gremmie@1 13 <tr>
gremmie@1 14 <td>&nbsp;</td>
gremmie@1 15 <td>
bgneal@133 16 {% comment_dialogs %}
gremmie@1 17 <input type="submit" name="submit_button" value="Send" />
gremmie@1 18 <input type="submit" name="submit_button" value="Cancel" />
gremmie@1 19 </td>
gremmie@1 20 </tr>
gremmie@1 21 </table>
gremmie@1 22 </form>
gremmie@1 23 <br />
gremmie@1 24 {% endblock %}