diff options
author | luxagraf <sng@luxagraf.net> | 2018-08-28 08:33:27 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-08-28 08:33:27 -0600 |
commit | 24b86512d027ee436eab6c125928b7798a6ad1bc (patch) | |
tree | 0d26a77540797fac44fbedd2745f56345d7b6f7c /app/utils | |
parent | 4ab532c0d6257c51e38d093fa80eb8debc6e535f (diff) | |
parent | 06cf302fa70a502f5af13738a38ddb5d32b6e79b (diff) |
Merge branch 'master' of ssh://lux2:/home/lxf/git/luxagraf
Diffstat (limited to 'app/utils')
-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), |