Mercurial > public > sg101
view gpp/podcast/admin.py @ 13:777451a98f9d
Shoutbox work: shouts now have absolute URLs. Shouts can now be flagged as abuse. Minor tweak to breadcrumbs css. Added flag date to comments admin.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 16 Apr 2009 02:00:17 +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)