initiate drf app

This commit is contained in:
2025-05-15 18:26:23 +03:00
commit 8e3dfd89b1
86 changed files with 9340 additions and 0 deletions

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