bgneal@215: {% extends 'base.html' %} bgneal@310: {% load url from future %} bgneal@215: {% block title %}Promote Stranger: {{ post.user.username }}{% endblock %} bgneal@215: {% block content %} bgneal@215:

Promote Stranger: {{ post.user.username }}

bgneal@215: bgneal@215: {% if can_moderate and can_promote %} bgneal@215:

All new users are considered "strangers" until approved by a moderator. bgneal@215: Strangers have their posts automatically scanned for spam phrases. Moderators can also instantly bgneal@215: deactivate stranger accounts if the spam filter does not catch them. If you promote a stranger, bgneal@215: these checks (which are somewhat expensive for the webserver) will no longer be performed, bgneal@215: and moderators won't be able to deactivate them on the spot. You may wish to wait until the user bgneal@215: has posted at least 10 times before making your decision.

bgneal@215:

Please confirm that you wish to promote the new user bgneal@310: {{ post.user.username }} from bgneal@310: stranger status based on this post. bgneal@215:

bgneal@215:
{% csrf_token %} bgneal@215: bgneal@215:
bgneal@215: {% else %} bgneal@215: {% if can_moderate %} bgneal@215:

That user is no longer a stranger, and can't be promoted again.

bgneal@215: {% else %} bgneal@215:

Sorry, but you don't have permission to promote users in that post's forum.

bgneal@215: {% endif %} bgneal@215: {% endif %} bgneal@215:
bgneal@215:

bgneal@310: Return to the post. bgneal@215:

bgneal@215: {% endblock %}