How can I submit a Django formset within python code? -
background. want our users check if metadata read out of several images correct.
therefore, show retreived data in formset let user check everything.
in case metadata has errors (that happens) display them form errors here.
problem. obtain error messages need bound forms. feeding our various data bound modelformset
, taking care of managementform
... not simple. unbound version works fine.
idea. if produce unbound form , submit within python code, simple way post data need create bound form.
Comments
Post a Comment