##// END OF EJS Templates
Fixed moving thread to bump limit. Fixed multipost in the not bumpable thread
Fixed moving thread to bump limit. Fixed multipost in the not bumpable thread

File last commit:

r919:84a3726d default
r1134:d009a1d2 default
Show More
not_found.py
17 lines | 352 B | text/x-python | PythonLexer
neko259
Moved 404 page to class-based views
r555 from django.shortcuts import render
from boards.views.base import BaseBoardView
neko259
Minor style fixes to view classes. Fixed ban view
r561
neko259
Moved 404 page to class-based views
r555 class NotFoundView(BaseBoardView):
neko259
Minor style fixes to view classes. Fixed ban view
r561 """
neko259
Moved 404 page to class-based views
r555 Page 404 (not found)
neko259
Minor style fixes to view classes. Fixed ban view
r561 """
neko259
Moved 404 page to class-based views
r555
def get(self, request):
neko259
Fixed tag threads view
r919 params = self.get_context_data()
neko259
Updates to support django 1.7
r872
neko259
Fixed tag threads view
r919 response = render(request, 'boards/404.html', params)
neko259
404 page now returns the 404 status for real. Fixed some tests related to...
r890 response.status_code = 404
return response