10 lines
215 B
Python
10 lines
215 B
Python
from modeltranslation import translator
|
|
|
|
from core.apps.orders.models import Order
|
|
|
|
|
|
@translator.register(Order)
|
|
class OrderTranslation(translator.TranslationOptions):
|
|
fields = [
|
|
'name', 'location'
|
|
] |