annotate gpp/templates/forums/spammer.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 8c1832b9d815
children daa2916f5b34
rev   line source
bgneal@212 1 {% extends 'base.html' %}
bgneal@212 2 {% block title %}Deactivate Spammer: {{ post.user.username }}{% endblock %}
bgneal@212 3 {% block content %}
bgneal@212 4 <h2>Deactivate Spammer: {{ post.user.username }}</h2>
bgneal@212 5
bgneal@215 6 {% if can_moderate and can_deactivate %}
bgneal@212 7 <p>Please confirm that you wish to mark the user
bgneal@212 8 <a href="{% url bio-view_profile username=post.user.username %}">{{ post.user.username }}</a> as a
bgneal@212 9 spammer based on <a href="{% url forums-goto_post post.id %}">this post</a>.
bgneal@212 10 If you confirm, the user's account will be deactivated, and all posts and comments
bgneal@212 11 left by the user will be deleted.</p>
bgneal@212 12 <p><strong>This is a drastic action, so please be absolutely sure
bgneal@212 13 you wish to proceed!</strong></p>
bgneal@212 14 <form action="." method="post">{% csrf_token %}
bgneal@212 15 <input type="submit" value="Deactivate {{ post.user.username }}" />
bgneal@212 16 </form>
bgneal@212 17 {% else %}
bgneal@215 18 {% if can_moderate %}
bgneal@215 19 <p>That user is no longer a stranger, and can't be deactivated like this. Please
bgneal@215 20 contact the site admin if that user is now posting spam.</p>
bgneal@215 21 {% else %}
bgneal@215 22 <p>Sorry, but you don't have permission to deactivate spammers in that post's forum.</p>
bgneal@215 23 {% endif %}
bgneal@212 24 {% endif %}
bgneal@212 25 <hr />
bgneal@212 26 <p>
bgneal@212 27 <a href="{% url forums-goto_post post.id %}">Return to the post</a>.
bgneal@212 28 </p>
bgneal@212 29 {% endblock %}