view gpp/templates/forums/new_topic.html @ 119:b8f1dcc9fae4

Forgot to commit the template for the forums split topic view.
author Brian Neal <bgneal@gmail.com>
date Sat, 24 Oct 2009 02:39:54 +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> &raquo;
   <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 %}