12 lines
270 B
Python
12 lines
270 B
Python
from modeltranslation.translator import register, TranslationOptions
|
|
from .models import NewsAndEvents
|
|
|
|
|
|
@register(NewsAndEvents)
|
|
class NewsAndEventsTranslationOptions(TranslationOptions):
|
|
fields = (
|
|
"title",
|
|
"summary",
|
|
)
|
|
empty_values = None
|