comparison gpp/templates/forums/new_topic_thanks.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 593fb6dbd449
comparison
equal deleted inserted replaced
82:bc3978f023c2 83:5b4c812b448e
1 {% extends 'base.html' %}
2 {% block title %}Forums: New Topic Created{% endblock %}
3 {% block content %}
4 <h2>Forums: {{ forum.name }} - New Topic Created</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 <p>
12 New topic created successfully.
13 Click <a href="{{ topic.get_absolute_url }}">here</a> to view your new topic.
14 </p>
15
16 {% endblock %}