diff options
Diffstat (limited to 'app/utils/views.py')
-rw-r--r-- | app/utils/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/utils/views.py b/app/utils/views.py index 49b701b..dcb16a8 100644 --- a/app/utils/views.py +++ b/app/utils/views.py @@ -30,7 +30,7 @@ def insert_image(request): """ The view that handles the admin insert image/video feature """ - images = LuxImage.objects.all()[:50] + images = LuxImage.objects.all()[:80] videos = LuxVideo.objects.all()[:10] object_list = sorted( chain(images, videos), |