TrangPham / django-admin-confirm

AdminConfirmMixin is a mixin for ModelAdmin that adds confirmations to changes, additions and actions.
Other
129 stars 16 forks source link

Simple workaround to ignore FieldDoesNotExist with custom fields #57

Open Henri-J-Norden opened 3 months ago

Henri-J-Norden commented 3 months ago

Fixes

Proposed changes:

Tested manually:

A custom field client is added to the ModelForm of the model TransferOrder.

Before this results in an exception:

FieldDoesNotExist
django.core.exceptions.FieldDoesNotExist: TransferOrder has no field named 'client'

After: Custom fields are ignored image