Mercurial > public > sg101
comparison gpp/antispam/views.py @ 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 |
comparison
equal
deleted
inserted
replaced
214:28988cce138b | 215:8c1832b9d815 |
---|---|
1 """Views for the antispam application.""" | |
2 | |
3 from django.shortcuts import render_to_response | |
4 from django.template import RequestContext | |
5 | |
6 import bio.models | |
7 | |
8 | |
9 def suspended(request): | |
10 """This view checks the user's status for suspension and displays an | |
11 appropriate message. | |
12 """ | |
13 is_active = request.user.is_active | |
14 | |
15 return render_to_response('antispam/suspended.html', { | |
16 'is_active': is_active, | |
17 }, | |
18 context_instance = RequestContext(request)) |