Mercurial > public > sg101
annotate gpp/templates/forums/spammer_nailed.html @ 527:645025056dfa
Adding some management commands to the downloads application to help manage
the SG101 MP3 compilations. Added a command to generate a HTML report of all
the downloads in a given category. Added a command that generates a bash
script that wgets all the files in a category.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 21 Dec 2011 01:08:21 +0000 |
parents | 3c48a555298d |
children |
rev | line source |
---|---|
bgneal@212 | 1 {% extends 'base.html' %} |
bgneal@310 | 2 {% load url from future %} |
bgneal@492 | 3 {% load bio_tags %} |
bgneal@212 | 4 {% block title %}Spammer Nailed: {{ spammer.username }}{% endblock %} |
bgneal@212 | 5 {% block content %} |
bgneal@212 | 6 <h2>Spammer Nailed: {{ spammer.username }}</h2> |
bgneal@212 | 7 <p> |
bgneal@212 | 8 {% if success %} |
bgneal@492 | 9 The user {% profile_link spammer.username %} |
bgneal@212 | 10 has had his/her account deactivated for spamming. |
bgneal@212 | 11 All forum posts and comments this user has made have been deleted. The site admin has been |
bgneal@212 | 12 notified of this action. Thanks for helping to keep our site spam-free! |
bgneal@212 | 13 {% else %} |
bgneal@212 | 14 Whoops, something went wrong deactivating the account of |
bgneal@492 | 15 {% profile_link spammer.username '.' %} |
bgneal@212 | 16 Or, possibly some time has passed and the account was reinstated. If you have any questions, contact |
bgneal@212 | 17 the site admin. |
bgneal@212 | 18 {% endif %} |
bgneal@212 | 19 </p> |
bgneal@212 | 20 {% endblock %} |