view gpp/podcast/admin.py @ 140:91a01b8b5885

Comments: in order to show a green board concept while looking at the comments in the admin, added a 'not removed' boolean function.
author Brian Neal <bgneal@gmail.com>
date Mon, 30 Nov 2009 03:20:24 +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)