mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-05-10 06:14:43 +00:00
8 lines
223 B
Python
8 lines
223 B
Python
from modeltranslation.translator import translator, TranslationOptions
|
|
from .models import News
|
|
|
|
|
|
class NewsTranslationOptions(TranslationOptions):
|
|
fields = ('title',)
|
|
|
|
translator.register(News, NewsTranslationOptions)
|