diff --git a/RoutesApp/models.py b/RoutesApp/models.py index 0b3014e..1ce8137 100644 --- a/RoutesApp/models.py +++ b/RoutesApp/models.py @@ -76,7 +76,9 @@ class Route(BaseModel): verbose_name=_('Куда можете доставить?'), null=True, blank=True ) - cargo_type = models.CharField(choices=cargo_type_choices, default='parcel', verbose_name=_('Могу перевезти')) + cargo_type = models.CharField( + choices=cargo_type_choices, default='letter', verbose_name=_('Могу перевезти') + ) # не используем с v2 weight = models.IntegerField(verbose_name=_('Укажите вес до (кг)'), null=True, blank=True) phone = models.CharField(verbose_name=_('Укажите номер для связи'), blank=True, null=True)