I have a django model class and I applied model translation on that class as described below. I applied translation for some of the model fields. Now if i inherit this model to another model class, then I can not get access to the fields of the parent class which are added into translation. why?
class LayerTranslationOptions(TranslationOptions):
fields = (
'title',
'abstract',
'purpose',
'constraints_other',
'supplemental_information',
'data_quality_statement',
)
translator.register(Layer, LayerTranslationOptions)