Files
account_store/RoutesApp/models.py
SDE ca48a00196 0.0.16
login routines
2023-07-11 15:17:49 +03:00

23 lines
641 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from django.db import models
from django.utils.translation import gettext_lazy as _
# Create your models here.
type_transport_choices = (
('avia', _('Авиатранспорт')),
('road', _('Наземный транспорт'))
)
transfer_location_choices = (
('airport', _('В аэропорту')),
('city', _('По городу')),
('other', _('По договоренности'))
)
cargo_type_choices = (
('passenger', _('Пассажир')),
('cargo', _('Груз')),
('parcel', _('Бандероль')),
('package', _('Посылка')),
('letter', _('Письмо\Документ'))
)