view gpp/templates/forums/new_topic.html @ 110:c329bfaed4a7

Forums: implemented the move topic feature.
author Brian Neal <bgneal@gmail.com>
date Sat, 26 Sep 2009 20:19:45 +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 %}