Having laid down the database foundations of our project in Chapter 3, in this chapter we are going to build the remaining models on top of that, to store user-generated data. In our case it is a checkout system, which is very important for e-commerce sites.
Customizing the User model
Registration and login flows
CRUD1 views in Django
Middleware components
Django widgets
Displaying complex data in the admin interface
The User Model
Whatever model we are going to create for storing user-generated data will most likely be ...