Делаю по этому мануалу
django-registration-redux.readthedocs.org/en/lates...
устанавливаю pip install django-registration-redux
затем добавляю в INSTALLED_APPS :
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.sites',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'blog.apps.BlogConfig'
'registration',
]
Terminal:(m_env) alexander@alexander-Lenovo-G505:~/my_projects/python_projects/my_env$ python3.5 manage.py migrate
Traceback (most recent call last):
File "manage.py", line 10, in <module>
.....................
File "/home/alexander/my_projects/python_projects/my_env/m_env/lib/python3.5/site-packages/django/db/models/base.py", line 103, in __new__
"application was loaded. " % (module, name))
RuntimeError: Model class registration.models.RegistrationProfile doesn't declare an explicit app_label and either isn't in an application in INSTALLED_APPS or else was imported before its application was loaded.
Где я что упустил ?