##// END OF EJS Templates
Don't show reply link in the tree view. Fixed thread diff test after the thread id parameter was moved to POST dict.
Don't show reply link in the tree view. Fixed thread diff test after the thread id parameter was moved to POST dict.

File last commit:

r918:06775760 default
r1196:fdd4e78e default
Show More
banned.py
17 lines | 492 B | text/x-python | PythonLexer
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"""
params = dict()
ban = get_object_or_404(Ban, ip=utils.get_client_ip(request))
params['ban_reason'] = ban.reason
return render(request, 'boards/staticpages/banned.html', params)