Created
May 23, 2011 19:26
-
-
Save stuross/987359 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Content(ContentBase): | |
headline = models.CharField((u'Homepage headline'), max_length=255, blank=True, null=True) | |
placement_category = models.ForeignKey(Category, blank=True, null=True) | |
published_objects = PublishedManager() | |
class Meta: | |
verbose_name_plural = "Content" | |
ordering = ['-pub_date'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment