##// END OF EJS Templates
Using opening post ID from cache, not passing it to the post view
Using opening post ID from cache, not passing it to the post view

File last commit:

r579:7bbdf3d0 default
r621:59a1deab default
Show More
archived_threads.py
17 lines | 422 B | text/x-python | PythonLexer
from boards.models import Thread
from boards.views.all_threads import AllThreadsView
__author__ = 'neko259'
class ArchiveView(AllThreadsView):
def get_threads(self):
return Thread.objects.filter(archived=True).order_by('-bump_time')
def get_context_data(self, **kwargs):
context = super(ArchiveView, self).get_context_data(**kwargs)
context['archived'] = True
return context