##// END OF EJS Templates
Updated paginator for long page lists. Removed old get_threads method in the post manager
Updated paginator for long page lists. Removed old get_threads method in the post manager

File last commit:

r561:2045aa89 1.7-dev
r596:5657c06f default
Show More
authors.py
13 lines | 339 B | text/x-python | PythonLexer
neko259
Added missing all_tags module. Moved authors view to class-based
r551 from django.shortcuts import render
from boards.authors import authors
from boards.views.base import BaseBoardView
neko259
Minor style fixes to view classes. Fixed ban view
r561
neko259
Added missing all_tags module. Moved authors view to class-based
r551 class AuthorsView(BaseBoardView):
def get(self, request):
context = self.get_context_data(request=request)
context['authors'] = authors
return render(request, 'boards/authors.html', context)