comparison antispam/views.py @ 581:ee87ea74d46b

For Django 1.4, rearranged project structure for new manage.py.
author Brian Neal <bgneal@gmail.com>
date Sat, 05 May 2012 17:10:48 -0500
parents gpp/antispam/views.py@8c1832b9d815
children a8dc08cc5db4
comparison
equal deleted inserted replaced
580:c525f3e0b5d0 581:ee87ea74d46b
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))