File: excerpt.py

package info (click to toggle)
python-django-feincms 1.6.2-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,716 kB
  • sloc: python: 6,585; makefile: 85; sh: 18
file content (15 lines) | stat: -rw-r--r-- 444 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
Add an excerpt field to the page.
"""

from django.db import models
from django.utils.translation import ugettext_lazy as _

def register(cls, admin_cls):
    cls.add_to_class('excerpt', models.TextField(_('excerpt'), blank=True,
        help_text=_('Add a brief excerpt summarizing the content of this page.')))

    admin_cls.fieldsets.append((_('Excerpt'), {
        'fields': ('excerpt',),
        'classes': ('collapse',),
        }))