I want to have the Django admin use a custom form field for the input of some fields.
Until now I made a custom model field that has the form field bound to it which wor
class MyModelForm(forms.ModelForm): my_field = MyCustomFormField() class Meta: model = MyModel class MyModelAdmin(admin.ModelAdmin): form = MyModelForm