login routines
This commit is contained in:
SDE
2023-07-11 15:17:49 +03:00
parent b88ddde1c7
commit ca48a00196
13 changed files with 137 additions and 1 deletions

23
RoutesApp/models.py Normal file
View File

@@ -0,0 +1,23 @@
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', _('Письмо\Документ'))
)