You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you look at a paginated view of the articles (e.g. tag page), it always looks like you've reached the end because the articles don't fill up the space available.
This is due to a combination of:
the DEFAULT_PAGINATION = 5 setting on the example blog, the documentation should recommend a multiple of 6 be used (to neatly fit the 3 -> 2 -> 1 responsive layout); and
on the first page (arguably the worst place to imply you've reached the end!) one article is taken out to be the larger preview.
{% with article_list = articles_page.object_list[1:] %}
{% include 'article_list.html' %}
{% endwith %}
{% else %}
{% with article_list = articles_page.object_list %}
{% include 'article_list.html' %}
{% endwith %}
{% endif %}
I'm not sure of the best way to do that - the page sizes are always going to be consistent, I don't see a way to say "x + 1 for the first page and x thereafter" - that leaves either repeating the first item (once in the preview, once in the list) or simply omitting the expanded preview entirely.
First page
Nth page
The text was updated successfully, but these errors were encountered:
When you look at a paginated view of the articles (e.g. tag page), it always looks like you've reached the end because the articles don't fill up the space available.
This is due to a combination of:
DEFAULT_PAGINATION = 5
setting on the example blog, the documentation should recommend a multiple of 6 be used (to neatly fit the 3 -> 2 -> 1 responsive layout); andThe latter is handled by:
bulrush/bulrush/templates/index.html
Lines 4 to 31 in 32a08fb
I'm not sure of the best way to do that - the page sizes are always going to be consistent, I don't see a way to say "x + 1 for the first page and x thereafter" - that leaves either repeating the first item (once in the preview, once in the list) or simply omitting the expanded preview entirely.
First page
Nth page
The text was updated successfully, but these errors were encountered: