diff --git a/index/views.py b/index/views.py index 9e6c730..65447a6 100644 --- a/index/views.py +++ b/index/views.py @@ -2,7 +2,7 @@ import os from django.http import HttpResponse from django.shortcuts import render -from django.db.models import Manager +# from django.db.models import Manager # только для тестирования! import requests diff --git a/static/css/style.css b/static/css/style.css index 882d13f..0a26b61 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -48,6 +48,7 @@ header > h1 { text-align: center; background-color: var(--brand-bg); padding: 0.5em; + margin: 0; } header * { diff --git a/users/models.py b/users/models.py index d54396f..0a690a6 100644 --- a/users/models.py +++ b/users/models.py @@ -1,4 +1,4 @@ -from django.contrib.auth.models import AbstractBaseUser, PermissionsMixin +from django.contrib.auth.models import AbstractBaseUser from django.db import models from django.utils import timezone from django.core.validators import MinLengthValidator