Mercurial > public > sg101
view gpp/podcast/admin.py @ 144:49b713bca29d
Podcast: un-inlined the channel items from the channel. That would be too bulky and too much info on one admin screen.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 06 Dec 2009 21:44:22 +0000 |
parents | dbd703f7d63a |
children | d424b8bae71d |
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 admin.site.register(Channel) admin.site.register(Item)