Re: unexpected error with inline model

2010-08-08 Thread raj
> 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

unexpected error with inline model

2010-08-08 Thread Michael P. Soulier
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