gallery.py
19 lines
| 397 B
| text/x-python
|
PythonLexer
neko259
|
r951 | from boards.views.thread import ThreadView | ||
TEMPLATE_GALLERY = 'boards/thread_gallery.html' | ||||
CONTEXT_POSTS = 'posts' | ||||
class GalleryThreadView(ThreadView): | ||||
def get_template(self): | ||||
return TEMPLATE_GALLERY | ||||
def get_data(self, thread): | ||||
params = dict() | ||||
params[CONTEXT_POSTS] = thread.get_replies_with_images( | ||||
view_fields_only=True) | ||||
return params | ||||