comparison gpp/templates/forums/spammer_nailed.html @ 212:fad7548b7f6e

Fix #80: give moderators the ability to deactivate users for spam.
author Brian Neal <bgneal@gmail.com>
date Sun, 09 May 2010 20:53:34 +0000
parents
children daa2916f5b34
comparison
equal deleted inserted replaced
211:3a626c48e9ae 212:fad7548b7f6e
1 {% extends 'base.html' %}
2 {% block title %}Spammer Nailed: {{ spammer.username }}{% endblock %}
3 {% block content %}
4 <h2>Spammer Nailed: {{ spammer.username }}</h2>
5 <p>
6 {% if success %}
7 The user <a href="{% url bio-view_profile username=spammer.username %}">{{ spammer.username }}</a>
8 has had his/her account deactivated for spamming.
9 All forum posts and comments this user has made have been deleted. The site admin has been
10 notified of this action. Thanks for helping to keep our site spam-free!
11 {% else %}
12 Whoops, something went wrong deactivating the account of
13 <a href="{% url bio-view_profile username=spammer.username %}">{{ spammer.username }}</a>.
14 Or, possibly some time has passed and the account was reinstated. If you have any questions, contact
15 the site admin.
16 {% endif %}
17 </p>
18 {% endblock %}