annotate gpp/templates/forums/spammer_nailed.html @ 265:1ba2c6bf6eb7

Closing #98. Animated GIFs were losing their transparency and animated properties when saved as avatars. Reworked the avatar save process to only run the avatar through PIL if it is too big. This preserves the original uploaded file if it is within the desired size settings. This may still mangle big animated gifs. If this becomes a problem, then maybe look into calling the PIL Image.resize() method directly. Moved the PIL image specific functions from bio.forms to a new module: core.image for better reusability in the future.
author Brian Neal <bgneal@gmail.com>
date Fri, 24 Sep 2010 02:12:09 +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 %}