Screen error Screen error

Screen with models.py enter image description here

Screen views.py enter image description here

  • Lay out another screen, views.py. - Vladimir Yaremenko 1:16 pm
  • Added screen views.py - Denis Novomlinov
  • 1. If you are accessing through the admin panel, check if the model is registered in admin.py Example: from django.contrib import admin from .models import * class BlogIndexPageAdmin(admin.ModelAdmin): list_display = [''intro",] class Meta: model = BlogIndexPage - Vladimir Yaremenko
  • Error imgur.com/a/d4mP8 - Denis Novomlinov
  • For a more detailed analysis of the problem, there are a couple of questions. 1. Is BlogIndexPage a different model? 2. Attach the directory structure of the application, the full contents are model.py, admin.py, views.py, urls.py. - Vladimir Yaremenko

0