annotate gpp/templates/forums/spammer.html @ 490:f0f3966ea44f

For #233, switched to asynchronous loading of the social media sharing javascript. Also switched to Facebook's javascript SDK instead of using an iframe for the like/share button.
author Brian Neal <bgneal@gmail.com>
date Thu, 20 Oct 2011 00:36:37 +0000
parents daa2916f5b34
children 3c48a555298d
rev   line source
bgneal@212 1 {% extends 'base.html' %}
bgneal@310 2 {% load url from future %}
bgneal@212 3 {% block title %}Deactivate Spammer: {{ post.user.username }}{% endblock %}
bgneal@212 4 {% block content %}
bgneal@212 5 <h2>Deactivate Spammer: {{ post.user.username }}</h2>
bgneal@212 6
bgneal@215 7 {% if can_moderate and can_deactivate %}
bgneal@212 8 <p>Please confirm that you wish to mark the user
bgneal@310 9 <a href="{% url 'bio-view_profile' username=post.user.username %}">{{ post.user.username }}</a> as a
bgneal@310 10 spammer based on <a href="{% url 'forums-goto_post' post.id %}">this post</a>.
bgneal@212 11 If you confirm, the user's account will be deactivated, and all posts and comments
bgneal@212 12 left by the user will be deleted.</p>
bgneal@212 13 <p><strong>This is a drastic action, so please be absolutely sure
bgneal@212 14 you wish to proceed!</strong></p>
bgneal@212 15 <form action="." method="post">{% csrf_token %}
bgneal@212 16 <input type="submit" value="Deactivate {{ post.user.username }}" />
bgneal@212 17 </form>
bgneal@212 18 {% else %}
bgneal@215 19 {% if can_moderate %}
bgneal@215 20 <p>That user is no longer a stranger, and can't be deactivated like this. Please
bgneal@215 21 contact the site admin if that user is now posting spam.</p>
bgneal@215 22 {% else %}
bgneal@215 23 <p>Sorry, but you don't have permission to deactivate spammers in that post's forum.</p>
bgneal@215 24 {% endif %}
bgneal@212 25 {% endif %}
bgneal@212 26 <hr />
bgneal@212 27 <p>
bgneal@310 28 <a href="{% url 'forums-goto_post' post.id %}">Return to the post</a>.
bgneal@212 29 </p>
bgneal@212 30 {% endblock %}