Pagination
23.12.2023
11
0
0
0
Is the design pattern, which divide content on the website into smaller pieces (pages)
There are the following types of page pagination:
- Direct pagination - 1, 2, 3 ...
- Direct with divided blocks - 10-20, 20-30 ...
Advantages of pagination on your site:
- Accelerated content loading
- Organization of content on the resource
Disadvantages of pagination:
- Some people prefer to simply scroll down, without using pages. That is, they prefer an infinity scroll.
- Complexity in implementation. If you do not make pages unique and if you do not think through the link structure of such pages well enough, then this will cause problems with indexing in particular and with SEO in general
Used in
In this article I will show how I implemented commenting on my website. Commenting, which is available to both anonymous and registered users.
Let me make a reservation right away that the authentication system that you and I will write is not based on the built-in Django application, django.contrib.auth. This will be a separate application with a separate model for it.
In this article, you will find an example of how to implement your own Quill tooltip. And you will get how this even works. As an example, a tooltip will be created for links.
This is an article that is going to introduce you to my new project/webtool, SearchResultParser. Also, from this article, you can navigate to any interesting article for you. See them in the end.
In this article you will know commands how to create new django app, how to add model to app and how to configure it.