Mercurial > public > sg101
comparison gpp/templates/forums/stranger.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 %}Promote Stranger: {{ post.user.username }}{% endblock %} | |
3 {% block content %} | |
4 <h2>Promote Stranger: {{ post.user.username }}</h2> | |
5 | |
6 {% if can_moderate and can_promote %} | |
7 <p>All new users are considered "<em>strangers</em>" until approved by a moderator. | |
8 Strangers have their posts automatically scanned for spam phrases. Moderators can also instantly | |
9 deactivate stranger accounts if the spam filter does not catch them. If you promote a stranger, | |
10 these checks (which are somewhat expensive for the webserver) will no longer be performed, | |
11 and moderators won't be able to deactivate them on the spot. You may wish to wait until the user | |
12 has posted at least 10 times before making your decision.</p> | |
13 <p>Please confirm that you wish to promote the new user | |
14 <a href="{% url bio-view_profile username=post.user.username %}">{{ post.user.username }}</a> from | |
15 <em>stranger</em> status based on <a href="{% url forums-goto_post post.id %}">this post</a>. | |
16 </p> | |
17 <form action="." method="post">{% csrf_token %} | |
18 <input type="submit" value="Yes, {{ post.user.username }} seems legit and is not a stranger" /> | |
19 </form> | |
20 {% else %} | |
21 {% if can_moderate %} | |
22 <p>That user is no longer a stranger, and can't be promoted again.</p> | |
23 {% else %} | |
24 <p>Sorry, but you don't have permission to promote users in that post's forum.</p> | |
25 {% endif %} | |
26 {% endif %} | |
27 <hr /> | |
28 <p> | |
29 <a href="{% url forums-goto_post post.id %}">Return to the post</a>. | |
30 </p> | |
31 {% endblock %} |