Mercurial > public > madeira
annotate news/admin.py @ 95:7b52e8ef01ec
For Django 1.5: Remove usage of django.contrib.markup.
Since we were only using Textile in one place, decided to stop using it
altogether.
Wrote a management command, untextile, to convert the gallery models'
description fields from textile to raw HTML. This should be run one time before
going live with Django 1.5.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 28 Aug 2013 19:22:23 -0500 |
parents | e2868ad47a1e |
children |
rev | line source |
---|---|
bgneal@45 | 1 """ |
bgneal@45 | 2 Automatic admin definitions for the models in the news application. |
bgneal@45 | 3 |
bgneal@45 | 4 """ |
bgneal@45 | 5 from django.contrib import admin |
bgneal@45 | 6 from django.conf import settings |
bgneal@45 | 7 |
bgneal@45 | 8 from news.models import News |
bgneal@45 | 9 |
bgneal@45 | 10 |
bgneal@45 | 11 class NewsAdmin(admin.ModelAdmin): |
bgneal@45 | 12 list_filter = ['date'] |
bgneal@45 | 13 search_fields = ['title', 'content'] |
bgneal@45 | 14 save_on_top = True |
bgneal@45 | 15 |
bgneal@45 | 16 class Media: |
bgneal@45 | 17 js = settings.THIRD_PARTY_JS['tiny_mce'] |
bgneal@45 | 18 |
bgneal@45 | 19 admin.site.register(News, NewsAdmin) |