15 lines
335 B
Python
15 lines
335 B
Python
from modeltranslation.translator import TranslationOptions, register
|
|
|
|
from core.apps.evaluation.models import CustomerModel, PropertyOwnerModel
|
|
|
|
|
|
@register(CustomerModel)
|
|
class CustomerTranslation(TranslationOptions):
|
|
fields = []
|
|
|
|
|
|
@register(PropertyOwnerModel)
|
|
class PropertyOwnerTranslation(TranslationOptions):
|
|
fields = []
|
|
|