12 lines
259 B
Python
12 lines
259 B
Python
|
from .models import COFPage
|
||
|
|
||
|
from wagtail_modeltranslation.translator import WagtailTranslationOptions
|
||
|
from modeltranslation.decorators import register
|
||
|
|
||
|
@register(COFPage)
|
||
|
class COFPageTr(WagtailTranslationOptions):
|
||
|
fields = (
|
||
|
'corps',
|
||
|
)
|
||
|
|