It's better if TranslatableAdmin
changes the admin form in place, so that there is no need for TranslationInline
s.
#52
Labels
enhancement
New feature or request
Is your feature request related to a problem? Please describe.
Currently the way to manage the translations in the admin is to inherit the admin from
TranslatableAdmin
and addTranslationInline
as its inline.It's better if
TranslatableAdmin
changes the admin form in place, so that there is no need forTranslationInline
s.Describe the solution you'd like
Each translatable field should be duplicated in the admin form for each supported language. so if
name
is a translatable field, there should bename (en - default)
,name (de)
, etc. for all the languages. If the field is required (blank=False
) the default language field should be required as well, but not other language fields.This way the admin inlines can manage translations as well and they are not restricted because of the inline limit issues in Django.
The text was updated successfully, but these errors were encountered: