##// END OF EJS Templates
Show id of the post you reply to in the form title
Show id of the post you reply to in the form title

File last commit:

r1249:93f2906a default
r1289:15cdb526 default
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)