How to show all fields of model in admin page?
问题 here is the models page In this picture, only the title shows up on here, I used: def __unicode__(self): return self.title; here is the each individual objects How do I show all these fields? How do I show all the fields in each Model page? 回答1: By default, the admin layout only shows what is returned from the object's unicode function. To display something else you need to create a custom admin form in app_dir/admin.py . See here: https://docs.djangoproject.com/en/dev/ref/contrib/admin/