##// END OF EJS Templates
Added a short simple cache to the post template
Added a short simple cache to the post template

File last commit:

r542:8b7899f5 1.7-dev
r543:cc55cb0b 1.7-dev
Show More
archived_threads.py
9 lines | 225 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)