- 'body': MarkupField(_('body'), markup_type='textile_pl', null=True, blank=True),
+ 'slug': models.SlugField(unique=True, db_index=True, null=True, blank=True),
+ 'title': models.CharField(_('title'), max_length=255, null=True, blank=True),
+ 'lead': MarkupField(_('lead'), markup_type='textile_pl', null=True, blank=True,
+ help_text=_('Use <a href="http://textile.thresholdstate.com/">Textile</a> syntax.')),
+ 'body': MarkupField(_('body'), markup_type='textile_pl', null=True, blank=True,
+ help_text=_('Use <a href="http://textile.thresholdstate.com/">Textile</a> syntax.')),