Permissions in Django


Django tip:

With django.contrib.auth, Django automatically creates add, change, delete, and view permissions for each Django model. Each permission is named like this:

{app}.{action}_{model_name}

You can also see (and set) those permissions in the Django admin.

For more, check out Permissions in Django.