14 lines
400 B
Python
14 lines
400 B
Python
from modeltranslation.translator import TranslationOptions, register
|
|
|
|
from core.apps.evaluation.models import AutoevaluationhistoryModel, QuickevaluationhistoryModel
|
|
|
|
|
|
@register(AutoevaluationhistoryModel)
|
|
class AutoevaluationhistoryTranslation(TranslationOptions):
|
|
fields = []
|
|
|
|
|
|
@register(QuickevaluationhistoryModel)
|
|
class QuickevaluationhistoryTranslation(TranslationOptions):
|
|
fields = []
|