view gpp/podcast/admin.py @ 268:eea6219024ef

Fixing #117; problems with floating images in bulletins. Tweaked the CSS to add a clear to the meta paragraph.
author Brian Neal <bgneal@gmail.com>
date Sat, 25 Sep 2010 19:22:08 +0000
parents 49b713bca29d
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)