##// END OF EJS Templates
Fixed post deletion and export to JSON
Fixed post deletion and export to JSON

File last commit:

r1590:0eb7ac3c default
r1603:0695b6a9 default
Show More
random.py
22 lines | 455 B | text/x-python | PythonLexer
neko259
Add random images list view
r1246 from django.shortcuts import render
from django.views.generic import View
neko259
Store images as regular attachments instead of separate model
r1590 from boards.models import Attachment
neko259
Add random images list view
r1246
__author__ = 'neko259'
TEMPLATE = 'boards/random.html'
neko259
Don't return posts with the same image in random view
r1249 CONTEXT_IMAGES = 'images'
neko259
Add random images list view
r1246
neko259
Center random images
r1247 RANDOM_POST_COUNT = 9
neko259
Add random images list view
r1246
class RandomImageView(View):
def get(self, request):
params = dict()
neko259
Store images as regular attachments instead of separate model
r1590 params[CONTEXT_IMAGES] = Attachment.objects.get_random_images(
neko259
Don't return posts with the same image in random view
r1249 RANDOM_POST_COUNT)
neko259
Add random images list view
r1246
return render(request, TEMPLATE, params)