##// END OF EJS Templates
Added anonymous mode in which the board does not save poster IP addresses
Added anonymous mode in which the board does not save poster IP addresses

File last commit:

r1249:93f2906a default
r1362:9b48eb30 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)