Mercurial > public > sg101
view gpp/templates/forums/new_topic.html @ 117:a3633f39f3ce
Forums: pre-select all the user profiles when displaying a topic. As it was, the template was calling get_user_profile which was causing a db hit on every post in the topic.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 23 Oct 2009 03:09:33 +0000 |
parents | 23035afdeae8 |
children | 3ae999b0c53b |
line wrap: on
line source
{% extends 'base.html' %} {% block title %}Forums: New Topic{% endblock %} {% block custom_js %}{{ form.media }}{% endblock %} {% block content %} <h2>{{ forum.name }} - New Topic</h2> <h3> <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> » <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a> </h3> <form action="." method="post"> {{ form.as_p }} <input type="submit" name="post" value="Submit" /> </form> {% endblock %}