The Django admin is a powerful built-in tool giving you the ability to create, update, and delete objects in your database using a web interface. You can customize the Django admin to do almost anything you want.
In this course, you learned how to:
- Register your object models with the Django admin
- Add attributes as columns in the change list
- Create column values with calculated content
- Cross-reference admin pages through links
- Filter the change list page through query strings
- Make your change list searchable
- Customize the automatic
ModelForm
object - Change the HTML in Django admin templates
Noel Simela on Jan. 2, 2021
Great introduction, I have picked a few items.