view gpp/podcast/admin.py @ 58:02e5dfa830cc

#11 Update Blueprints to 0.9. Also update the conditional IE specific include of the ie.css file. Hopefully this will resolve some issues seen with IE8.
author Brian Neal <bgneal@gmail.com>
date Wed, 24 Jun 2009 00:18:53 +0000
parents dbd703f7d63a
children 49b713bca29d
line wrap: on
line source
'''
This file contains the automatic admin site definitions for the podcast models.
'''

from django.contrib import admin
from podcast.models import Channel
from podcast.models import Item


class ItemInline(admin.StackedInline):
   model = Item
   extra = 1


class ChannelAdmin(admin.ModelAdmin):
   inlines = (ItemInline, )


admin.site.register(Channel, ChannelAdmin)