I'm doing on a Django Project.
There is a post model, and the post has 'likes' field. When a user clicks the Like button on a post, I want to increase the number of the Likes of the post.
I want to solve the problem only with Django without REST framework(DRF)
what can I do?