Mercurial > public > sg101
annotate gpp/podcast/admin.py @ 470:d9b6c4ec1977
For #227; rework last commit slightly (r508). Adapt the desired forums signal signature to the queued_search API instead of the other way around.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 17 Aug 2011 01:29:27 +0000 |
parents | d424b8bae71d |
children |
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 |
bgneal@277 | 9 class ItemAdmin(admin.ModelAdmin): |
bgneal@277 | 10 readonly_fields = ('update_date', ) |
gremmie@1 | 11 |
bgneal@144 | 12 admin.site.register(Channel) |
bgneal@277 | 13 admin.site.register(Item, ItemAdmin) |