Django - Excluding some fields in Inline Admin Interface

坚强是说给别人听的谎言 提交于 2020-01-01 03:58:29

问题


In Django admin interface, Is to possible to exclude some of the fields in Inline?


回答1:


with exclude you can do it

ex:

class Book(models.Model):
   author = models.ForeignKey(Author)
   title = models.CharField(max_length=100)
   short_description = models.CharField(max_length=200)

class BookInline(admin.TabularInline):
    model = Book
    exclude = ['short_description']


来源:https://stackoverflow.com/questions/4187291/django-excluding-some-fields-in-inline-admin-interface

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!