The Django admin is a user-friendly application to administer the contents of a relational database linked to a Django project. Although the Django admin is almost effortless in terms of setting it up – as described in Chapter 1 – there are multiple configuration options you’ll learn in this chapter to create more powerful Django admin displays and functionalities.
In this chapter you’ll first learn how to register Django models in the Django admin. Next, you’ll learn how to display records in the Django admin and use techniques like ordering, inline editing, pagination, ...