# HG changeset patch # User Brian Neal # Date 1260135862 0 # Node ID 49b713bca29dfb22ae855c9548369de6e984784a # Parent 1ed461fd20306bb3b0b5b39857279dc6704d065a Podcast: un-inlined the channel items from the channel. That would be too bulky and too much info on one admin screen. diff -r 1ed461fd2030 -r 49b713bca29d gpp/podcast/admin.py --- a/gpp/podcast/admin.py Sun Dec 06 21:28:31 2009 +0000 +++ b/gpp/podcast/admin.py Sun Dec 06 21:44:22 2009 +0000 @@ -7,13 +7,5 @@ from podcast.models import Item -class ItemInline(admin.StackedInline): - model = Item - extra = 1 - - -class ChannelAdmin(admin.ModelAdmin): - inlines = (ItemInline, ) - - -admin.site.register(Channel, ChannelAdmin) +admin.site.register(Channel) +admin.site.register(Item)