I have a model registered in the admin site. One of its fields is a long string expression. I\'d like to add custom form fields to the add/update page of this model in the a
If you absolutely only want to store the combined field on the model and not the two seperate fields, you could do something like this:
form attribute on your ModelAdmin (https://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.form)save_formset method on your ModelAdmin (https://docs.djangoproject.com/en/dev/ref/contrib/admin/#django.contrib.admin.ModelAdmin.save_model)I never done something like this so I'm not completely sure how it will work out.