Customizing the Django Admin: list_display and search_fields
You’ve used admin.site.register(Post) to add your model to the admin. But the result is ugly: just a list of Post object (1), Post object (2),…

You’ve used admin.site.register(Post) to add your model to the admin. But the result is ugly: just a list of Post object (1), Post object (2),…