view 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
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 ItemAdmin(admin.ModelAdmin):
    readonly_fields = ('update_date', )

admin.site.register(Channel)
admin.site.register(Item, ItemAdmin)