Mercurial > public > sg101
annotate antispam/views.py @ 989:2908859c2fe4
Smilies now use relative links.
This is for upcoming switch to SSL. Currently we do not need absolute URLs for
smilies. If this changes we can add it later.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 29 Oct 2015 20:54:34 -0500 |
parents | a8dc08cc5db4 |
children | e932f2ecd4a7 |
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 |
bgneal@215 | 7 def suspended(request): |
bgneal@215 | 8 """This view checks the user's status for suspension and displays an |
bgneal@215 | 9 appropriate message. |
bgneal@215 | 10 """ |
bgneal@215 | 11 is_active = request.user.is_active |
bgneal@215 | 12 |
bgneal@215 | 13 return render_to_response('antispam/suspended.html', { |
bgneal@215 | 14 'is_active': is_active, |
bgneal@689 | 15 }, |
bgneal@215 | 16 context_instance = RequestContext(request)) |