##// END OF EJS Templates
Fixed issue in thread diff
Fixed issue in thread diff

File last commit:

r872:752c0b44 default
r893:e7cc348c default
Show More
banned.py
19 lines | 595 B | text/x-python | PythonLexer
neko259
Rewriting views to class-based
r542 from django.shortcuts import get_object_or_404, render
from boards import utils
from boards.models import Ban
from boards.views.base import BaseBoardView
class BannedView(BaseBoardView):
def get(self, request):
"""Show the page that notifies that user is banned"""
neko259
Added test for all views get requests. Fixed banned view failing this test
r545 context = self.get_context_data(request=request)
neko259
Rewriting views to class-based
r542
ban = get_object_or_404(Ban, ip=utils.get_client_ip(request))
context['ban_reason'] = ban.reason
neko259
Updates to support django 1.7
r872
# TODO Use dict here
return render(request, 'boards/staticpages/banned.html',
context_instance=context)