comparison gpp/templates/forums/new_topic.html @ 83:5b4c812b448e

Forums: Added the ability to add a new topic. This is very much a work in progress.
author Brian Neal <bgneal@gmail.com>
date Sat, 29 Aug 2009 20:54:16 +0000
parents
children 23035afdeae8
comparison
equal deleted inserted replaced
82:bc3978f023c2 83:5b4c812b448e
1 {% extends 'base.html' %}
2 {% block title %}Forums: New Topic{% endblock %}
3 {% block content %}
4 <h2>{{ forum.name }} - New Topic</h2>
5
6 <h3>
7 <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> &raquo;
8 <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a>
9 </h3>
10
11 <form action="." method="post">
12 {{ form.as_p }}
13 <input type="submit" name="post" value="Submit" />
14 </form>
15
16 {% endblock %}