view gpp/templates/forums/new_topic_thanks.html @ 235:d302c498560e

Fix problem when deleting multiple topics from a forum in bulk. We getting a list of topics from the database, then deleting each topic. But after you delete a topic, the forum.last_post on the remaining non-deleted topics can be stale. This was causing a weird DoesNotExist. Now just get the topics one at a time from the database.
author Brian Neal <bgneal@gmail.com>
date Thu, 26 Aug 2010 04:01:58 +0000
parents 5b4c812b448e
children 593fb6dbd449
line wrap: on
line source
{% 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> &raquo;
   <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 %}