mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-03-16 22:10:31 +00:00
10 lines
237 B
Python
10 lines
237 B
Python
from modeltranslation.translator import TranslationOptions, translator
|
|
|
|
from .test_app.models import Other
|
|
|
|
|
|
class OtherTranslationOptions(TranslationOptions):
|
|
fields = ("name",)
|
|
|
|
|
|
translator.register(Other, OtherTranslationOptions)
|