Lay out another screen, views.py. - Vladimir Yaremenko1: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
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
from django.contrib import admin from .models import * class BlogIndexPageAdmin(admin.ModelAdmin): list_display = [''intro",] class Meta: model = BlogIndexPage- Vladimir Yaremenko