Exclude a type of post from pagination
I use a model for the posts of my blog that you can see here(Is a my old post).
As you can see, in that moldel, I've an option to indicate highlighted post. If I use the code below to implement the pagination on my blog, also the highlighted post is sent in a page different from the first.
{% for post in posts %}
{% if post.highlighted == 1 %}
<h1><strong>Highlighted</strong></h1>
<a href="{{ post.get_absolute_url }}"><img src="{{ post.header_image }}" alt="Image of {{ post.title }}"></a>
<h1><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></h1>
<h4>{{ post.tagline }}</h4>
{% endif %}
{% endfor %}
<hr><hr><hr>
{% for post in posts %}
{% if post.highlighted == 0 %}
<h1><strong>Not Highlighted</strong></h1>
<a href="{{ post.get_absolute_url }}"><img src="{{ post.header_image }}" alt="Image of {{ post.title }}"></a>
<h1><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></h1>
<p>{{ post.tagline }}</p>
<h5>{{ post.publishing_date|date }}</h5>
{% for keyconcepts in post.keyconcepts.all %}
<a href="#">#{{ keyconcepts }}</a>
{% endfor %}
<hr>
{% endif %}
{% endfor %}
{% block pagination %}
{% if is_paginated %}
<div class="pagination px-auto">
<nav aria-label="Page navigation">
<ul class="pagination justify-content-center">
{% if page_obj.has_previous %}
<li class="page-item">
<a class="page-link text-center shadow" href="{{ request.path }}?page={{ page_obj.previous_page_number }}">Pagina precedente</a>
</li>
{% endif %}
<li class="page-item disabled">
<p class="page-link text-center shadow">Pagina {{ page_obj.number }} di {{ page_obj.paginator.num_pages }}.</p>
</li>
{% if page_obj.has_next %}
<li class="page-item">
<a class="page-link text-center shadow" href="{{ request.path }}?page={{ page_obj.next_page_number }}">Pagina successiva</a>
</li>
{% endif %}
</ul>
</nav>
</div>
{% endif %}
{% endblock %}
I would like to exclude all highlighted post from the pagination. Is it possible?
Below views.py
class ListPost(ListView):
model = Blog
context_object_name = 'posts'
queryset = Blog.objects.filter(category="G.I.S.") #FUNDAMENTAL FILTER
template_name = "blog/list_post.html"
paginate_by = 3
django pagination django-templates django-views django-2.1
add a comment |
I use a model for the posts of my blog that you can see here(Is a my old post).
As you can see, in that moldel, I've an option to indicate highlighted post. If I use the code below to implement the pagination on my blog, also the highlighted post is sent in a page different from the first.
{% for post in posts %}
{% if post.highlighted == 1 %}
<h1><strong>Highlighted</strong></h1>
<a href="{{ post.get_absolute_url }}"><img src="{{ post.header_image }}" alt="Image of {{ post.title }}"></a>
<h1><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></h1>
<h4>{{ post.tagline }}</h4>
{% endif %}
{% endfor %}
<hr><hr><hr>
{% for post in posts %}
{% if post.highlighted == 0 %}
<h1><strong>Not Highlighted</strong></h1>
<a href="{{ post.get_absolute_url }}"><img src="{{ post.header_image }}" alt="Image of {{ post.title }}"></a>
<h1><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></h1>
<p>{{ post.tagline }}</p>
<h5>{{ post.publishing_date|date }}</h5>
{% for keyconcepts in post.keyconcepts.all %}
<a href="#">#{{ keyconcepts }}</a>
{% endfor %}
<hr>
{% endif %}
{% endfor %}
{% block pagination %}
{% if is_paginated %}
<div class="pagination px-auto">
<nav aria-label="Page navigation">
<ul class="pagination justify-content-center">
{% if page_obj.has_previous %}
<li class="page-item">
<a class="page-link text-center shadow" href="{{ request.path }}?page={{ page_obj.previous_page_number }}">Pagina precedente</a>
</li>
{% endif %}
<li class="page-item disabled">
<p class="page-link text-center shadow">Pagina {{ page_obj.number }} di {{ page_obj.paginator.num_pages }}.</p>
</li>
{% if page_obj.has_next %}
<li class="page-item">
<a class="page-link text-center shadow" href="{{ request.path }}?page={{ page_obj.next_page_number }}">Pagina successiva</a>
</li>
{% endif %}
</ul>
</nav>
</div>
{% endif %}
{% endblock %}
I would like to exclude all highlighted post from the pagination. Is it possible?
Below views.py
class ListPost(ListView):
model = Blog
context_object_name = 'posts'
queryset = Blog.objects.filter(category="G.I.S.") #FUNDAMENTAL FILTER
template_name = "blog/list_post.html"
paginate_by = 3
django pagination django-templates django-views django-2.1
But Willem gave you the answer to this in your original post, except you need to select is_highlighted=False.
– Daniel Roseman
Nov 11 at 21:51
I've adopted a different solution for the html template in relation to the my old post. I've updated the html code, sorry for my mistake.
– Massimiliano Moraca
Nov 11 at 21:59
add a comment |
I use a model for the posts of my blog that you can see here(Is a my old post).
As you can see, in that moldel, I've an option to indicate highlighted post. If I use the code below to implement the pagination on my blog, also the highlighted post is sent in a page different from the first.
{% for post in posts %}
{% if post.highlighted == 1 %}
<h1><strong>Highlighted</strong></h1>
<a href="{{ post.get_absolute_url }}"><img src="{{ post.header_image }}" alt="Image of {{ post.title }}"></a>
<h1><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></h1>
<h4>{{ post.tagline }}</h4>
{% endif %}
{% endfor %}
<hr><hr><hr>
{% for post in posts %}
{% if post.highlighted == 0 %}
<h1><strong>Not Highlighted</strong></h1>
<a href="{{ post.get_absolute_url }}"><img src="{{ post.header_image }}" alt="Image of {{ post.title }}"></a>
<h1><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></h1>
<p>{{ post.tagline }}</p>
<h5>{{ post.publishing_date|date }}</h5>
{% for keyconcepts in post.keyconcepts.all %}
<a href="#">#{{ keyconcepts }}</a>
{% endfor %}
<hr>
{% endif %}
{% endfor %}
{% block pagination %}
{% if is_paginated %}
<div class="pagination px-auto">
<nav aria-label="Page navigation">
<ul class="pagination justify-content-center">
{% if page_obj.has_previous %}
<li class="page-item">
<a class="page-link text-center shadow" href="{{ request.path }}?page={{ page_obj.previous_page_number }}">Pagina precedente</a>
</li>
{% endif %}
<li class="page-item disabled">
<p class="page-link text-center shadow">Pagina {{ page_obj.number }} di {{ page_obj.paginator.num_pages }}.</p>
</li>
{% if page_obj.has_next %}
<li class="page-item">
<a class="page-link text-center shadow" href="{{ request.path }}?page={{ page_obj.next_page_number }}">Pagina successiva</a>
</li>
{% endif %}
</ul>
</nav>
</div>
{% endif %}
{% endblock %}
I would like to exclude all highlighted post from the pagination. Is it possible?
Below views.py
class ListPost(ListView):
model = Blog
context_object_name = 'posts'
queryset = Blog.objects.filter(category="G.I.S.") #FUNDAMENTAL FILTER
template_name = "blog/list_post.html"
paginate_by = 3
django pagination django-templates django-views django-2.1
I use a model for the posts of my blog that you can see here(Is a my old post).
As you can see, in that moldel, I've an option to indicate highlighted post. If I use the code below to implement the pagination on my blog, also the highlighted post is sent in a page different from the first.
{% for post in posts %}
{% if post.highlighted == 1 %}
<h1><strong>Highlighted</strong></h1>
<a href="{{ post.get_absolute_url }}"><img src="{{ post.header_image }}" alt="Image of {{ post.title }}"></a>
<h1><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></h1>
<h4>{{ post.tagline }}</h4>
{% endif %}
{% endfor %}
<hr><hr><hr>
{% for post in posts %}
{% if post.highlighted == 0 %}
<h1><strong>Not Highlighted</strong></h1>
<a href="{{ post.get_absolute_url }}"><img src="{{ post.header_image }}" alt="Image of {{ post.title }}"></a>
<h1><a href="{{ post.get_absolute_url }}">{{ post.title }}</a></h1>
<p>{{ post.tagline }}</p>
<h5>{{ post.publishing_date|date }}</h5>
{% for keyconcepts in post.keyconcepts.all %}
<a href="#">#{{ keyconcepts }}</a>
{% endfor %}
<hr>
{% endif %}
{% endfor %}
{% block pagination %}
{% if is_paginated %}
<div class="pagination px-auto">
<nav aria-label="Page navigation">
<ul class="pagination justify-content-center">
{% if page_obj.has_previous %}
<li class="page-item">
<a class="page-link text-center shadow" href="{{ request.path }}?page={{ page_obj.previous_page_number }}">Pagina precedente</a>
</li>
{% endif %}
<li class="page-item disabled">
<p class="page-link text-center shadow">Pagina {{ page_obj.number }} di {{ page_obj.paginator.num_pages }}.</p>
</li>
{% if page_obj.has_next %}
<li class="page-item">
<a class="page-link text-center shadow" href="{{ request.path }}?page={{ page_obj.next_page_number }}">Pagina successiva</a>
</li>
{% endif %}
</ul>
</nav>
</div>
{% endif %}
{% endblock %}
I would like to exclude all highlighted post from the pagination. Is it possible?
Below views.py
class ListPost(ListView):
model = Blog
context_object_name = 'posts'
queryset = Blog.objects.filter(category="G.I.S.") #FUNDAMENTAL FILTER
template_name = "blog/list_post.html"
paginate_by = 3
django pagination django-templates django-views django-2.1
django pagination django-templates django-views django-2.1
edited Nov 12 at 11:29
asked Nov 11 at 21:46
Massimiliano Moraca
819
819
But Willem gave you the answer to this in your original post, except you need to select is_highlighted=False.
– Daniel Roseman
Nov 11 at 21:51
I've adopted a different solution for the html template in relation to the my old post. I've updated the html code, sorry for my mistake.
– Massimiliano Moraca
Nov 11 at 21:59
add a comment |
But Willem gave you the answer to this in your original post, except you need to select is_highlighted=False.
– Daniel Roseman
Nov 11 at 21:51
I've adopted a different solution for the html template in relation to the my old post. I've updated the html code, sorry for my mistake.
– Massimiliano Moraca
Nov 11 at 21:59
But Willem gave you the answer to this in your original post, except you need to select is_highlighted=False.
– Daniel Roseman
Nov 11 at 21:51
But Willem gave you the answer to this in your original post, except you need to select is_highlighted=False.
– Daniel Roseman
Nov 11 at 21:51
I've adopted a different solution for the html template in relation to the my old post. I've updated the html code, sorry for my mistake.
– Massimiliano Moraca
Nov 11 at 21:59
I've adopted a different solution for the html template in relation to the my old post. I've updated the html code, sorry for my mistake.
– Massimiliano Moraca
Nov 11 at 21:59
add a comment |
1 Answer
1
active
oldest
votes
class ListPost(ListView):
queryset = Blog.objects.filter(is_highlighted=True)
context_object_name = 'posts'
template_name = "blog/list_post.html"
paginate_by = 3
Note Blog
seems a misnomer. BlogPost
seems more accurate.
You suggestion is not correct. I don't want only the highlighted post, but all posts of "GIS" category and the pagination with the highlighted post, always, on the top of the list of the posts at the first page.
– Massimiliano Moraca
Nov 12 at 11:32
1
you did not mention anything aboutcategory
until you edited it after I answered the question :|
– rikAtee
Nov 12 at 15:50
why not doqueryset = Blog.objects.filter(category="G.I.S.", is_highlighted=True)
?
– rikAtee
Nov 12 at 15:52
Because I've this: django.core.exceptions.FieldError: Cannot resolve keyword 'is_highlighted' into field. Choices are: category, contents, draft, header_image, highlighted, id, keyconcepts, post_ptr, post_ptr_id, publishing_date, sl ug, tagline, timeaction_ptr, timeaction_ptr_id, title, updating_date
– Massimiliano Moraca
Nov 12 at 16:44
The answer is in the error - your field name ishighlighted
, notis_highlighted
🙃 so it'squeryset = Blog.objects.filter(category="G.I.S.", highlighted=True)
– rikAtee
Nov 13 at 0:27
|
show 1 more comment
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253571%2fexclude-a-type-of-post-from-pagination%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
class ListPost(ListView):
queryset = Blog.objects.filter(is_highlighted=True)
context_object_name = 'posts'
template_name = "blog/list_post.html"
paginate_by = 3
Note Blog
seems a misnomer. BlogPost
seems more accurate.
You suggestion is not correct. I don't want only the highlighted post, but all posts of "GIS" category and the pagination with the highlighted post, always, on the top of the list of the posts at the first page.
– Massimiliano Moraca
Nov 12 at 11:32
1
you did not mention anything aboutcategory
until you edited it after I answered the question :|
– rikAtee
Nov 12 at 15:50
why not doqueryset = Blog.objects.filter(category="G.I.S.", is_highlighted=True)
?
– rikAtee
Nov 12 at 15:52
Because I've this: django.core.exceptions.FieldError: Cannot resolve keyword 'is_highlighted' into field. Choices are: category, contents, draft, header_image, highlighted, id, keyconcepts, post_ptr, post_ptr_id, publishing_date, sl ug, tagline, timeaction_ptr, timeaction_ptr_id, title, updating_date
– Massimiliano Moraca
Nov 12 at 16:44
The answer is in the error - your field name ishighlighted
, notis_highlighted
🙃 so it'squeryset = Blog.objects.filter(category="G.I.S.", highlighted=True)
– rikAtee
Nov 13 at 0:27
|
show 1 more comment
class ListPost(ListView):
queryset = Blog.objects.filter(is_highlighted=True)
context_object_name = 'posts'
template_name = "blog/list_post.html"
paginate_by = 3
Note Blog
seems a misnomer. BlogPost
seems more accurate.
You suggestion is not correct. I don't want only the highlighted post, but all posts of "GIS" category and the pagination with the highlighted post, always, on the top of the list of the posts at the first page.
– Massimiliano Moraca
Nov 12 at 11:32
1
you did not mention anything aboutcategory
until you edited it after I answered the question :|
– rikAtee
Nov 12 at 15:50
why not doqueryset = Blog.objects.filter(category="G.I.S.", is_highlighted=True)
?
– rikAtee
Nov 12 at 15:52
Because I've this: django.core.exceptions.FieldError: Cannot resolve keyword 'is_highlighted' into field. Choices are: category, contents, draft, header_image, highlighted, id, keyconcepts, post_ptr, post_ptr_id, publishing_date, sl ug, tagline, timeaction_ptr, timeaction_ptr_id, title, updating_date
– Massimiliano Moraca
Nov 12 at 16:44
The answer is in the error - your field name ishighlighted
, notis_highlighted
🙃 so it'squeryset = Blog.objects.filter(category="G.I.S.", highlighted=True)
– rikAtee
Nov 13 at 0:27
|
show 1 more comment
class ListPost(ListView):
queryset = Blog.objects.filter(is_highlighted=True)
context_object_name = 'posts'
template_name = "blog/list_post.html"
paginate_by = 3
Note Blog
seems a misnomer. BlogPost
seems more accurate.
class ListPost(ListView):
queryset = Blog.objects.filter(is_highlighted=True)
context_object_name = 'posts'
template_name = "blog/list_post.html"
paginate_by = 3
Note Blog
seems a misnomer. BlogPost
seems more accurate.
answered Nov 12 at 0:58
rikAtee
4,77542956
4,77542956
You suggestion is not correct. I don't want only the highlighted post, but all posts of "GIS" category and the pagination with the highlighted post, always, on the top of the list of the posts at the first page.
– Massimiliano Moraca
Nov 12 at 11:32
1
you did not mention anything aboutcategory
until you edited it after I answered the question :|
– rikAtee
Nov 12 at 15:50
why not doqueryset = Blog.objects.filter(category="G.I.S.", is_highlighted=True)
?
– rikAtee
Nov 12 at 15:52
Because I've this: django.core.exceptions.FieldError: Cannot resolve keyword 'is_highlighted' into field. Choices are: category, contents, draft, header_image, highlighted, id, keyconcepts, post_ptr, post_ptr_id, publishing_date, sl ug, tagline, timeaction_ptr, timeaction_ptr_id, title, updating_date
– Massimiliano Moraca
Nov 12 at 16:44
The answer is in the error - your field name ishighlighted
, notis_highlighted
🙃 so it'squeryset = Blog.objects.filter(category="G.I.S.", highlighted=True)
– rikAtee
Nov 13 at 0:27
|
show 1 more comment
You suggestion is not correct. I don't want only the highlighted post, but all posts of "GIS" category and the pagination with the highlighted post, always, on the top of the list of the posts at the first page.
– Massimiliano Moraca
Nov 12 at 11:32
1
you did not mention anything aboutcategory
until you edited it after I answered the question :|
– rikAtee
Nov 12 at 15:50
why not doqueryset = Blog.objects.filter(category="G.I.S.", is_highlighted=True)
?
– rikAtee
Nov 12 at 15:52
Because I've this: django.core.exceptions.FieldError: Cannot resolve keyword 'is_highlighted' into field. Choices are: category, contents, draft, header_image, highlighted, id, keyconcepts, post_ptr, post_ptr_id, publishing_date, sl ug, tagline, timeaction_ptr, timeaction_ptr_id, title, updating_date
– Massimiliano Moraca
Nov 12 at 16:44
The answer is in the error - your field name ishighlighted
, notis_highlighted
🙃 so it'squeryset = Blog.objects.filter(category="G.I.S.", highlighted=True)
– rikAtee
Nov 13 at 0:27
You suggestion is not correct. I don't want only the highlighted post, but all posts of "GIS" category and the pagination with the highlighted post, always, on the top of the list of the posts at the first page.
– Massimiliano Moraca
Nov 12 at 11:32
You suggestion is not correct. I don't want only the highlighted post, but all posts of "GIS" category and the pagination with the highlighted post, always, on the top of the list of the posts at the first page.
– Massimiliano Moraca
Nov 12 at 11:32
1
1
you did not mention anything about
category
until you edited it after I answered the question :|– rikAtee
Nov 12 at 15:50
you did not mention anything about
category
until you edited it after I answered the question :|– rikAtee
Nov 12 at 15:50
why not do
queryset = Blog.objects.filter(category="G.I.S.", is_highlighted=True)
?– rikAtee
Nov 12 at 15:52
why not do
queryset = Blog.objects.filter(category="G.I.S.", is_highlighted=True)
?– rikAtee
Nov 12 at 15:52
Because I've this: django.core.exceptions.FieldError: Cannot resolve keyword 'is_highlighted' into field. Choices are: category, contents, draft, header_image, highlighted, id, keyconcepts, post_ptr, post_ptr_id, publishing_date, sl ug, tagline, timeaction_ptr, timeaction_ptr_id, title, updating_date
– Massimiliano Moraca
Nov 12 at 16:44
Because I've this: django.core.exceptions.FieldError: Cannot resolve keyword 'is_highlighted' into field. Choices are: category, contents, draft, header_image, highlighted, id, keyconcepts, post_ptr, post_ptr_id, publishing_date, sl ug, tagline, timeaction_ptr, timeaction_ptr_id, title, updating_date
– Massimiliano Moraca
Nov 12 at 16:44
The answer is in the error - your field name is
highlighted
, not is_highlighted
🙃 so it's queryset = Blog.objects.filter(category="G.I.S.", highlighted=True)
– rikAtee
Nov 13 at 0:27
The answer is in the error - your field name is
highlighted
, not is_highlighted
🙃 so it's queryset = Blog.objects.filter(category="G.I.S.", highlighted=True)
– rikAtee
Nov 13 at 0:27
|
show 1 more comment
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253571%2fexclude-a-type-of-post-from-pagination%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
But Willem gave you the answer to this in your original post, except you need to select is_highlighted=False.
– Daniel Roseman
Nov 11 at 21:51
I've adopted a different solution for the html template in relation to the my old post. I've updated the html code, sorry for my mistake.
– Massimiliano Moraca
Nov 11 at 21:59