##// END OF EJS Templates
Merged with default
Merged with default

File last commit:

r1249:93f2906a default
r1320:c450e81f merge decentral
Show More
random.py
22 lines | 453 B | text/x-python | PythonLexer
from django.shortcuts import render
from django.views.generic import View
from boards.models import PostImage
__author__ = 'neko259'
TEMPLATE = 'boards/random.html'
CONTEXT_IMAGES = 'images'
RANDOM_POST_COUNT = 9
class RandomImageView(View):
def get(self, request):
params = dict()
params[CONTEXT_IMAGES] = PostImage.objects.get_random_images(
RANDOM_POST_COUNT)
return render(request, TEMPLATE, params)