Mercurial > public > madeira
diff news/admin.py @ 71:e2868ad47a1e
For Django 1.4, using the new manage.py.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 14 Apr 2012 16:40:29 -0500 |
parents | madeira/news/admin.py@966cde8635c0 |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/news/admin.py Sat Apr 14 16:40:29 2012 -0500 @@ -0,0 +1,19 @@ +""" +Automatic admin definitions for the models in the news application. + +""" +from django.contrib import admin +from django.conf import settings + +from news.models import News + + +class NewsAdmin(admin.ModelAdmin): + list_filter = ['date'] + search_fields = ['title', 'content'] + save_on_top = True + + class Media: + js = settings.THIRD_PARTY_JS['tiny_mce'] + +admin.site.register(News, NewsAdmin)