##// END OF EJS Templates
Removed linked tags. Added changelog for 2.0. Fixed reply connection.
Removed linked tags. Added changelog for 2.0. Fixed reply connection.

File last commit:

r561:2045aa89 1.7-dev
r740:7c2d35f4 2.0-dev
Show More
not_found.py
13 lines | 304 B | text/x-python | PythonLexer
from django.shortcuts import render
from boards.views.base import BaseBoardView
class NotFoundView(BaseBoardView):
"""
Page 404 (not found)
"""
def get(self, request):
context = self.get_context_data(request=request)
return render(request, 'boards/404.html', context)