deschler / django-modeltranslation

Translates Django models using a registration approach.
BSD 3-Clause "New" or "Revised" License
1.38k stars 258 forks source link

Native JSONField not supported (Django 1.10) #397

Open parraman opened 7 years ago

parraman commented 7 years ago

I get the following error when registering a native JSONField on Django 1.10:

django.core.exceptions.ImproperlyConfigured: JSONField is not supported by modeltranslation

Is there anyway to get it properly registered/configured? The version of django-modeltranslation I have currently installed is 0.12.

Thanks!

dbohomiakov commented 7 years ago

the same problem. Django 1.10.4 and modeltranslation 0.12. fix this problem using MODELTRANSLATION_CUSTOM_FIELDS = ('JSONField',)

psychok7 commented 7 years ago

Do translated Json Fields work properlly? can i trust them in production?