Mercurial > public > sg101
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gpp/templates/forums/new_topic_thanks.html Sat Aug 29 20:54:16 2009 +0000 @@ -0,0 +1,16 @@ +{% extends 'base.html' %} +{% block title %}Forums: New Topic Created{% endblock %} +{% block content %} +<h2>Forums: {{ forum.name }} - New Topic Created</h2> + +<h3> + <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> » + <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a> +</h3> + +<p> +New topic created successfully. +Click <a href="{{ topic.get_absolute_url }}">here</a> to view your new topic. +</p> + +{% endblock %}