view podcast/admin.py @ 959:fc4a1c4e488a

Add NSSR Spanish Top 61 banner.
author Brian Neal <bgneal@gmail.com>
date Mon, 13 Jul 2015 18:24:41 -0500
parents ee87ea74d46b
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)