diff --git a/core/models.py b/core/models.py index 1ea9620..ddb74d0 100644 --- a/core/models.py +++ b/core/models.py @@ -42,9 +42,10 @@ class AbstractDateTimeModel(models.Model): class Meta: abstract = True + # @TODO: translate into english and use translation -class AbstractStatusModel(AbstractDateTimeModel): - status = models.SmallIntegerField(_('статус'),default=STATUS_DEFAULT, choices=STATUS_CHOICES) +class AbstractStatusModel(AbstractDateTimeModel): + status = models.SmallIntegerField(_('статус'), default=STATUS_DEFAULT, choices=STATUS_CHOICES) objects = ActualOnlyManager() deleted = DeletedManager()