app/django/contrib/flatpages/models.py
changeset 54 03e267d67478
child 323 ff1a9aa48cfd
equal deleted inserted replaced
53:57b4279d8c4e 54:03e267d67478
       
     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 
       
    18     class Meta:
       
    19         db_table = 'django_flatpage'
       
    20         verbose_name = _('flat page')
       
    21         verbose_name_plural = _('flat pages')
       
    22         ordering = ('url',)
       
    23 
       
    24     class Admin:
       
    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 
       
    35     def get_absolute_url(self):
       
    36         return self.url