annotate gpp/templates/forums/new_topic.html @ 109:07be3e39e639

Forums: implemented topic level moderator controls.
author Brian Neal <bgneal@gmail.com>
date Sat, 26 Sep 2009 18:03:57 +0000
parents 23035afdeae8
children 3ae999b0c53b
rev   line source
bgneal@83 1 {% extends 'base.html' %}
bgneal@83 2 {% block title %}Forums: New Topic{% endblock %}
bgneal@95 3 {% block custom_js %}{{ form.media }}{% endblock %}
bgneal@83 4 {% block content %}
bgneal@83 5 <h2>{{ forum.name }} - New Topic</h2>
bgneal@83 6
bgneal@83 7 <h3>
bgneal@83 8 <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> &raquo;
bgneal@83 9 <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a>
bgneal@83 10 </h3>
bgneal@83 11
bgneal@83 12 <form action="." method="post">
bgneal@83 13 {{ form.as_p }}
bgneal@83 14 <input type="submit" name="post" value="Submit" />
bgneal@83 15 </form>
bgneal@83 16
bgneal@83 17 {% endblock %}