##// END OF EJS Templates
Fixed issue in thread diff
Fixed issue in thread diff

File last commit:

r872:752c0b44 default
r893:e7cc348c default
Show More
authors.py
14 lines | 385 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
neko259
Updates to support django 1.7
r872 # TODO Use dict here
return render(request, 'boards/authors.html', context_instance=context)