aboutsummaryrefslogtreecommitdiff
path: root/weblog/views.py
diff options
context:
space:
mode:
authorYaroslav de la Peña <contact@yaroslavps.com>2018-10-12 16:33:43 +0300
committerYaroslav de la Peña <contact@yaroslavps.com>2018-10-12 16:33:43 +0300
commita306094530a5e49a758cd9cf02d8860437c2dd8f (patch)
treec77ada864544ed15dcbc5f22b0b13cfe8fc5148f /weblog/views.py
parent1902be002029baf09a5d0e2b980f46a34510182c (diff)
downloadw3blog-a306094530a5e49a758cd9cf02d8860437c2dd8f.tar.gz
w3blog-a306094530a5e49a758cd9cf02d8860437c2dd8f.zip
fixed pinned posts appearing even if they are not published yet
Diffstat (limited to 'weblog/views.py')
-rwxr-xr-xweblog/views.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/weblog/views.py b/weblog/views.py
index d3a7066..d614cd6 100755
--- a/weblog/views.py
+++ b/weblog/views.py
@@ -78,7 +78,7 @@ def Index(request, **kwargs):
# and get the pinned and necessary posts depending on the page
posts_raw = list(all_pages[slice_start:slice_end])
if len(kwargs) < 1:
- for pinned_post in BlogPost.objects.filter(pinned=True).order_by('-pin_priority'):
+ for pinned_post in BlogPost.objects.filter(published=True, pinned=True).order_by('-pin_priority'):
if pinned_post in posts_raw:
posts_raw.remove(pinned_post)
posts_raw.append(pinned_post)
@@ -155,6 +155,7 @@ def Index(request, **kwargs):
else:
posts.append(post)
+ print('rendering template')
# If ajax is asking for the next page through the kwargs,
# just send the posts for the requested page without the other page elements
if 'nxtpage' in kwargs: