##// END OF EJS Templates
Optimized imports and added some docstrings to the post module
Optimized imports and added some docstrings to the post module

File last commit:

r579:7bbdf3d0 default
r622:d08e30ea 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