> type object 'MeetingTalkInline' has no attribute 'date_hierarchy'
date_hierarchy is an attribute expected to be with every 'normal'
admin classes. Why do django tries to search it in your inline admin?
Just because you have registered it as you do with normal admins.
Usually, inlines are not to
Hi,
I'm trying to use inline models, and I've configured my admin.py like so.
from django.contrib import admin
from opag.main.models import Notice, Meeting, MeetingTalk
class NoticeAdmin(admin.ModelAdmin):
list_display = ('title', 'visible')
list_display_links = ('title',)
class Meeting
2 matches
Mail list logo