initiate drf app
This commit is contained in:
24
backend/routes/constants/routeChoices.py
Normal file
24
backend/routes/constants/routeChoices.py
Normal file
@@ -0,0 +1,24 @@
|
||||
type_transport_choices = [
|
||||
("road", "Авто"),
|
||||
("avia", "Авиа"),
|
||||
('both', "Любой"),
|
||||
]
|
||||
|
||||
transfer_location_choices = [
|
||||
("airport", "В аэропорту"),
|
||||
("city", "По городу"),
|
||||
("other", "По договоренности")
|
||||
]
|
||||
|
||||
cargo_type_choices = [
|
||||
("letter", "Письмо или Документы"),
|
||||
("package", "Посылка (до 30кг)"),
|
||||
("passenger", "Попутчик"),
|
||||
("parcel", "Бандероль (до 5кг)"),
|
||||
("cargo", "Груз (свыше 30 кг)"),
|
||||
]
|
||||
|
||||
owner_type_choices = [
|
||||
("customer", "Заказчик"),
|
||||
("mover", "Перевозчик")
|
||||
]
|
||||
Reference in New Issue
Block a user