##// END OF EJS Templates
Fixed tag removal from thread and thread from tag
Fixed tag removal from thread and thread from tag

File last commit:

r565:98476b33 1.7-dev
r576:d1d83f72 default
Show More
static.py
13 lines | 373 B | text/x-python | PythonLexer
from django.shortcuts import render
from boards.views.base import BaseBoardView
class StaticPageView(BaseBoardView):
def get(request, name):
"""
Show a static page that needs only tags list and a CSS
"""
context = self.get_context_data(request=request)
return render(request, 'boards/staticpages/' + name + '.html', context)