I'm working on a Django (1.10 & Python3) project in which I need to implement a logic as: We have articles from various categories, the user needs to tag these articles, mean when user read articles then he needs to provide his feedback rather it's relevant or irrelevant to his situation.
We have to provide user's a list of categories when user select a category then all of the articles from that particular category will be available one by one to the user, mean it will show the first article to the user, when he tagged this article it will load next article automatically and also keep the user's tagging info because it's not necessary to tag all articles at once, user can tag few at a time when he can start from where has was stopped again.
In simple:
Would it be possible to send the user straight from their choice of a Category to the "Article Tagging" page with the next article to be tagged automatically loaded up and ready to be tagged, and the system keeps track of what the next article is that needs to be tagged?
How can I accomplish this bit of functionality in python & Django?
I'm new to python & Django, help me, please!
Thanks in advance!
You can process the selection as a request and then in views filter all articles on the basisof that selection.
Then paginate all those collected contents by
nextandpreviousavailable as django pagination features.