mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-05-18 01:21:09 +00:00
8 lines
222 B
Python
8 lines
222 B
Python
from modeltranslation.translator import translator, TranslationOptions
|
|
from models import News
|
|
|
|
|
|
class NewsTranslationOptions(TranslationOptions):
|
|
fields = ('title',)
|
|
|
|
translator.register(News, NewsTranslationOptions)
|