Проблема с моделью пользователей в интеграции Zinnia и Cookiecutter-Django - PullRequest
0 голосов
/ 01 мая 2018

Прежде всего мои настройки:

  • Linux Mint 18,2
  • Цинния 0,20
  • Джанго 1,9,9
  • cookiecutter-django 1.9.9
  • Python 3.5.2

Я создал проект с нуля с помощью cookiecutter-django, используя версию 1.9.9, как только в zinnia docs рекомендуется использовать django <2.0. Я просто: </p>

git checkout 1.9.9

Я следовал за документами, и проект работает нормально. ОДНАКО после добавления циннии я не могу мигрировать. Вот мой file config/settings/common.py

THIRD_PARTY_APPS = (
    'crispy_forms',  # Form layouts
    'allauth',  # registration
    'allauth.account',  # registration
    'allauth.socialaccount',  # registration
    'mptt',
    'tagging',
    'zinnia',   
)

TEMPLATES = [
    {
        # See: https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-TEMPLATES-BACKEND
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        # See: https://docs.djangoproject.com/en/dev/ref/settings/#template-dirs
        'DIRS': [
            str(APPS_DIR.path('templates')),
        ],
        'OPTIONS': {
            # See: https://docs.djangoproject.com/en/dev/ref/settings/#template-debug
            'debug': DEBUG,
            # See: https://docs.djangoproject.com/en/dev/ref/settings/#template-loaders
            # https://docs.djangoproject.com/en/dev/ref/templates/api/#loader-types
            'loaders': [
                'django.template.loaders.filesystem.Loader',
                'django.template.loaders.app_directories.Loader',
            ],
            # See: https://docs.djangoproject.com/en/dev/ref/settings/#template-context-processors
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.template.context_processors.i18n',
                'django.template.context_processors.media',
                'django.template.context_processors.static',
                'django.template.context_processors.tz',
                'django.contrib.messages.context_processors.messages',
                # Your stuff: custom template context processors go here
                'zinnia.context_processors.version',  # Optional
            ],
        },
    },
]

и confi/urls.py

urlpatterns = [
    url(r'^$', TemplateView.as_view(template_name='pages/home.html'), name='home'),
    url(r'^about/$', TemplateView.as_view(template_name='pages/about.html'), name='about'),

    # Django Admin, use {% url 'admin:index' %}
    url(settings.ADMIN_URL, include(admin.site.urls)),

    # User management
    url(r'^users/', include('rmining.users.urls', namespace='users')),
    url(r'^accounts/', include('allauth.urls')),

    # Your stuff: custom urls includes go here
    url(r'^weblog/', include('zinnia.urls')),
    url(r'^comments/', include('django_comments.urls')),


] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)

Когда я запускаю python manage.py migrate, я получаю следующую ошибку:

"Model '%s.%s' not registered." % (app_label, model_name))
LookupError: Model 'users.User' not registered.

Как я могу это исправить?

1 Ответ

0 голосов
/ 13 марта 2019

Я обнаружил, что это «ошибка» в Zinnia по способу загрузки пользовательской модели.

В zinnia / models / author.py:

def safe_get_user_model():
    """
    Safe loading of the User model, customized or not.
    """
    user_app, user_model = settings.AUTH_USER_MODEL.split('.')
    return apps.get_registered_model(user_app, user_model)

Я изменил это как:

[...]
from django.contrib.auth import get_user_model
[...]

def safe_get_user_model():
    """
    Safe loading of the User model, customized or not.
    """
    # user_app, user_model = settings.AUTH_USER_MODEL.split('.')
    # return apps.get_registered_model(user_app, user_model)
    return get_user_model()

и отлично работает.

Я пытаюсь проверить это в чистой установке. Если это сработает, я сделаю пулл-запрос с ним.

...