In this chapter you’ll learn about Django administers users, groups, and permissions. You’ll learn how to conditionally display content depending on a user, how to restrict urls and class-based views, as well as how to manage CRUD (Create-Read-Update-Delete) permissions for Django model records based on user permissions.
In addition, you’ll also learn how to customize Django’s built-in user model to support additional data fields, as well as how to automate user management tasks like signup, password reminders, and password reset emails. Finally, you’ll learn how to ...