Mercurial > public > sg101
comparison gpp/templates/forums/new_topic_thanks.html @ 283:593fb6dbd449
Fixing #125. Developed a forums navigation template tag to consistently display forum navigation.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 04 Oct 2010 00:57:58 +0000 |
parents | 5b4c812b448e |
children |
comparison
equal
deleted
inserted
replaced
282:39664e661c69 | 283:593fb6dbd449 |
---|---|
1 {% extends 'base.html' %} | 1 {% extends 'base.html' %} |
2 {% load forum_tags %} | |
2 {% block title %}Forums: New Topic Created{% endblock %} | 3 {% block title %}Forums: New Topic Created{% endblock %} |
3 {% block content %} | 4 {% block content %} |
4 <h2>Forums: {{ forum.name }} - New Topic Created</h2> | 5 {% forum_navigation topic "New Topic Created" %} |
5 | |
6 <h3> | |
7 <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> » | |
8 <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a> | |
9 </h3> | |
10 | 6 |
11 <p> | 7 <p> |
12 New topic created successfully. | 8 You have successfully created a new topic called " |
13 Click <a href="{{ topic.get_absolute_url }}">here</a> to view your new topic. | 9 <a href="{{ topic.get_absolute_url }}">{{ topic.name }}</a>". |
14 </p> | 10 </p> |
15 | |
16 {% endblock %} | 11 {% endblock %} |