bgneal@83: {% extends 'base.html' %}
bgneal@83: {% block title %}Forums: New Topic Created{% endblock %}
bgneal@83: {% block content %}
bgneal@83: <h2>Forums: {{ forum.name }} - New Topic Created</h2>
bgneal@83: 
bgneal@83: <h3>
bgneal@83:    <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> &raquo;
bgneal@83:    <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a>
bgneal@83: </h3>
bgneal@83: 
bgneal@83: <p>
bgneal@83: New topic created successfully. 
bgneal@83: Click <a href="{{ topic.get_absolute_url }}">here</a> to view your new topic.
bgneal@83: </p>
bgneal@83: 
bgneal@83: {% endblock %}