1 from django.core import validators
2 from django.db import models
3 from django.contrib.sites.models import Site
4 from django.utils.translation import ugettext_lazy as _
5
6
7 -class FlatPage(models.Model):
8 url = models.CharField(_('URL'), max_length=100, validator_list=[validators.isAlphaNumericURL], db_index=True,
9 help_text=_("Example: '/about/contact/'. Make sure to have leading and trailing slashes."))
10 title = models.CharField(_('title'), max_length=200)
11 content = models.TextField(_('content'))
12 enable_comments = models.BooleanField(_('enable comments'))
13 template_name = models.CharField(_('template name'), max_length=70, blank=True,
14 help_text=_("Example: 'flatpages/contact_page.html'. If this isn't provided, the system will use 'flatpages/default.html'."))
15 registration_required = models.BooleanField(_('registration required'), help_text=_("If this is checked, only logged-in users will be able to view the page."))
16 sites = models.ManyToManyField(Site)
17
23
25 fields = (
26 (None, {'fields': ('url', 'title', 'content', 'sites')}),
27 (_('Advanced options'), {'classes': 'collapse', 'fields': ('enable_comments', 'registration_required', 'template_name')}),
28 )
29 list_filter = ('sites',)
30 search_fields = ('url', 'title')
31
32 - def __unicode__(self):
33 return u"%s -- %s" % (self.url, self.title)
34
37