##// END OF EJS Templates
Moved imageboard settings to the boards settings module. Added setting to disable archive
Moved imageboard settings to the boards settings module. Added setting to disable archive

File last commit:

r561:2045aa89 1.7-dev
r716:a6b9dd95 1.8.1 default
Show More
authors.py
13 lines | 339 B | text/x-python | PythonLexer
from django.shortcuts import render
from boards.authors import authors
from boards.views.base import BaseBoardView
class AuthorsView(BaseBoardView):
def get(self, request):
context = self.get_context_data(request=request)
context['authors'] = authors
return render(request, 'boards/authors.html', context)