view gpp/templates/forums/spammer_nailed.html @ 296:0eed8161ca39

Fixing #138. Shoutbox scroller breaks down if there aren't at least 2 things to scroll. Added some dummy shouts on the client side if the shout database is empty.
author Brian Neal <bgneal@gmail.com>
date Sun, 09 Jan 2011 20:53:00 +0000
parents fad7548b7f6e
children daa2916f5b34
line wrap: on
line source
{% extends 'base.html' %}
{% block title %}Spammer Nailed: {{ spammer.username }}{% endblock %}
{% block content %}
<h2>Spammer Nailed: {{ spammer.username }}</h2>
<p>
{% if success %}
The user <a href="{% url bio-view_profile username=spammer.username %}">{{ spammer.username }}</a>
has had his/her account deactivated for spamming.
All forum posts and comments this user has made have been deleted. The site admin has been
notified of this action. Thanks for helping to keep our site spam-free!
{% else %}
Whoops, something went wrong deactivating the account of
<a href="{% url bio-view_profile username=spammer.username %}">{{ spammer.username }}</a>. 
Or, possibly some time has passed and the account was reinstated. If you have any questions, contact
the site admin.
{% endif %}
</p>
{% endblock %}