Hide Model Field Form

[Solved] Hide Model Field Form | Php Frameworks Drupal - Code Explorer | yomemimo.com
Question : hide model field form

Answered by : tito-m2kp4ikokwba

from django.contrib import admin
class AuthorAdmin(admin.ModelAdmin): fields = ('name', 'title')
class AuthorAdmin(admin.ModelAdmin): exclude = ('birth_date',)

Source : https://docs.djangoproject.com/en/4.0/ref/contrib/admin/ | Last Update : Thu, 07 Jul 22

Answers related to hide model field form

Code Explorer Popular Question For Php Frameworks Drupal