##// END OF EJS Templates
Removed tag popularity ratings, they are too slow. Added API to get tag...
Removed tag popularity ratings, they are too slow. Added API to get tag popularity.

File last commit:

r579:7bbdf3d0 default
r651:582b2d85 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