I'm writing my first Django application in Django 2.0
My application has two types of membership level
- Free Users
- Paid Users
Also, there in the application I want certain function/views
disabled for Free Users and hide elements in template based on the membership level.
How can I manage all these in my application?
Is it possible to do it all using built-in permission manager?
I tried reading the docs, but it contains few inbuilt modules and could not get how to separate it as per my requirement