Mercurial > public > sg101
annotate gpp/podcast/admin.py @ 190:0e4961833cdf
Added some select_related's to downloads.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 01 Apr 2010 01:57:01 +0000 |
parents | 49b713bca29d |
children | d424b8bae71d |
rev | line source |
---|---|
gremmie@1 | 1 ''' |
gremmie@1 | 2 This file contains the automatic admin site definitions for the podcast models. |
gremmie@1 | 3 ''' |
gremmie@1 | 4 |
gremmie@1 | 5 from django.contrib import admin |
gremmie@1 | 6 from podcast.models import Channel |
gremmie@1 | 7 from podcast.models import Item |
gremmie@1 | 8 |
gremmie@1 | 9 |
bgneal@144 | 10 admin.site.register(Channel) |
bgneal@144 | 11 admin.site.register(Item) |