annotate gpp/templates/forums/spammer_nailed.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 fad7548b7f6e
children daa2916f5b34
rev   line source
bgneal@212 1 {% extends 'base.html' %}
bgneal@212 2 {% block title %}Spammer Nailed: {{ spammer.username }}{% endblock %}
bgneal@212 3 {% block content %}
bgneal@212 4 <h2>Spammer Nailed: {{ spammer.username }}</h2>
bgneal@212 5 <p>
bgneal@212 6 {% if success %}
bgneal@212 7 The user <a href="{% url bio-view_profile username=spammer.username %}">{{ spammer.username }}</a>
bgneal@212 8 has had his/her account deactivated for spamming.
bgneal@212 9 All forum posts and comments this user has made have been deleted. The site admin has been
bgneal@212 10 notified of this action. Thanks for helping to keep our site spam-free!
bgneal@212 11 {% else %}
bgneal@212 12 Whoops, something went wrong deactivating the account of
bgneal@212 13 <a href="{% url bio-view_profile username=spammer.username %}">{{ spammer.username }}</a>.
bgneal@212 14 Or, possibly some time has passed and the account was reinstated. If you have any questions, contact
bgneal@212 15 the site admin.
bgneal@212 16 {% endif %}
bgneal@212 17 </p>
bgneal@212 18 {% endblock %}