django-modeltrans
django-modeltrans copied to clipboard
Add additional supported fields
I have a use case where I would like to store localized fields that are not CharField
or TextField
fields.
I'd like to start with adding JSONField, which seems to work pretty well.
I would also like to explore FileField
. That field just stores a path in the database, but will need some additional work to wrap it so it returns FieldFile
instance as expected.