I want to add some different custom permissions in django's user model.
I want to add:
Class Meta:
permissions = (
("view_user", "Can see available users"),
("export_user", "Can Download the list of all users"),
)
How can I achieve this? Kindly help me!