##// END OF EJS Templates
Removed the old and unneeded jumper view
Removed the old and unneeded jumper view

File last commit:

r551:37f54a4a 1.7-dev
r554:11802a56 1.7-dev
Show More
authors.py
12 lines | 338 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)