diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gpp/antispam/views.py	Sat May 29 04:51:28 2010 +0000
@@ -0,0 +1,18 @@
+"""Views for the antispam application."""
+
+from django.shortcuts import render_to_response
+from django.template import RequestContext
+
+import bio.models
+
+
+def suspended(request):
+    """This view checks the user's status for suspension and displays an
+    appropriate message.
+    """
+    is_active = request.user.is_active
+
+    return render_to_response('antispam/suspended.html', {
+        'is_active': is_active,
+        }, 
+        context_instance = RequestContext(request))