summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2018-08-28 09:31:15 -0500
committerluxagraf <sng@luxagraf.net>2018-08-28 09:31:15 -0500
commit3834d7958306773af8be002087bb83260129fa08 (patch)
tree779a7ab1d7086713c9fdafdfe5d302f2f7e26f2a
parent9a21ee8e9d22c4ff758b63c8d89d72d9912993fc (diff)
made more images available to insert
-rw-r--r--app/utils/views.py2
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),