Mercurial > public > sg101
comparison gpp/templates/antispam/suspended.html @ 215:8c1832b9d815
Implement #84; additional checks on spammers; implement stranger status.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 29 May 2010 04:51:28 +0000 |
parents | |
children | daa2916f5b34 |
comparison
equal
deleted
inserted
replaced
214:28988cce138b | 215:8c1832b9d815 |
---|---|
1 {% extends 'base.html' %} | |
2 {% block title %}Account Suspension Status{% endblock %} | |
3 {% block content %} | |
4 <h2>Account Suspension Status</h2> | |
5 {% if not is_active %} | |
6 <p class="error"> | |
7 Your post has tripped our spam filter. Your account has been suspended pending | |
8 a review of your post. If this was a mistake, we sincerely apologize and promise | |
9 your account will be restored soon. We regret having to take this drastic measure, but | |
10 the high volume of spam we recieve has forced us to take this action. If you have any | |
11 questions, please feel to <a href="{% url contact-form %}">contact us</a>. | |
12 </p> | |
13 {% else %} | |
14 <p class="success"> | |
15 Your account has been restored and you should be able to make comments and forum | |
16 posts. We apologize for any inconvenience. | |
17 </p> | |
18 {% endif %} | |
19 {% endblock %} |