Files
tripwithbonus/backend/routes/constants/routeChoices.py
2025-05-15 18:26:23 +03:00

24 lines
642 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.
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", "Перевозчик")
]