view gpp/templates/forums/new_topic.html @ 189:db202792d9f5

Explicitly set session settings. Use the cache_db engine. Some minor tweaks to reduce some queries in forums.
author Brian Neal <bgneal@gmail.com>
date Thu, 01 Apr 2010 01:39:37 +0000
parents 2d299909e074
children 593fb6dbd449
line wrap: on
line source
{% extends 'base.html' %}
{% load forum_tags %}
{% 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> &raquo;
   <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a>
</h3>

{% show_form "New Topic" form "Submit" 0 MEDIA_URL %}
{% endblock %}