Mercurial > public > sg101
annotate antispam/views.py @ 645:99f7917702ca
Fix 081a88b3bfc8, javascript resize of forum images.
Commit 081a88b3bfc8 broke those pages that loaded forums.js but did not load
the imagesLoaded jQuery extension. Now we have arranged it so that only the
forums topic view loads imagesLoaded and put the resizing javascript inline.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 11 Mar 2013 15:30:25 -0500 |
parents | ee87ea74d46b |
children | a8dc08cc5db4 |
rev | line source |
---|---|
bgneal@215 | 1 """Views for the antispam application.""" |
bgneal@215 | 2 |
bgneal@215 | 3 from django.shortcuts import render_to_response |
bgneal@215 | 4 from django.template import RequestContext |
bgneal@215 | 5 |
bgneal@215 | 6 import bio.models |
bgneal@215 | 7 |
bgneal@215 | 8 |
bgneal@215 | 9 def suspended(request): |
bgneal@215 | 10 """This view checks the user's status for suspension and displays an |
bgneal@215 | 11 appropriate message. |
bgneal@215 | 12 """ |
bgneal@215 | 13 is_active = request.user.is_active |
bgneal@215 | 14 |
bgneal@215 | 15 return render_to_response('antispam/suspended.html', { |
bgneal@215 | 16 'is_active': is_active, |
bgneal@215 | 17 }, |
bgneal@215 | 18 context_instance = RequestContext(request)) |