from proj.app.models
, или попробуйте относительный импорт from ..models
2) Импорта в __init__.py для моделей нет, он пустой., а он должен быть:
.label--checkbox input[type="checkbox"]{...}
from django.utils import timezone
tz = timezone.get_default_timezone()
class A(models.Model):
created = models.DateTimeField()
def __str__(self):
return 'Заявка от {}'.format(self.created.astimezone(tz).strftime('%d.%m.%Y %H:%M'))