Patxi
Results
2
comments of
Patxi
I tried to change the declaration of EditOfferForm to inherit from `TranslationModelForm` instead of `ModelForm`: ``` python from modeltranslation.forms import TranslationModelForm class EditOfferForm(TranslationModelForm): place = LocationEditField(Location) meeting_point = LocationEditField(Location, autolocate=False)...
+1 Completely agree. Indeed, it seems a contradiction that I can set different "metadata" by language, but then I can not allocate more than one, to each model instance. Is...