Django View Authorization: Restricting Access
Django provides tools for both authentication and authorization. Django view authorization is typically done with decorators. This course will show you how to use these view decorators to enforce authorized viewing of pages in your Django site.
By the end of this course you’ll know how to:
- Use HttpRequestandHttpRequest.userobjects
- Authenticate and authorize users
- Differentiate between regular, staff, and admin users
- Secure a view with the @login_requireddecorator
- Restrict a view to different roles with the @user_passes_testdecorator
- Use the Django messages framework to notify your users