Mercurial > public > madeira
view articles/models.py @ 157:25a9d67f4d1c
Fix floating images stomping on next story or footer.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 29 Dec 2014 18:17:32 -0600 |
parents | e2868ad47a1e |
children |
line wrap: on
line source
""" Models for the articles application. """ from django.db import models class Article(models.Model): title = models.CharField(max_length=64) date = models.DateTimeField(db_index=True) text = models.TextField() source = models.TextField(help_text="Enter the source/author for the " "article, copyright info, etc; it will appear under the article.") url = models.URLField(blank=True, help_text = 'Link to original article; optional') pdf = models.FileField(upload_to = 'pdf/articles/%Y/%m/%d/', blank=True, help_text="If you want to make the original article available as " "a PDF download, you may upload it here.") def __unicode__(self): return self.title class Meta: ordering = ['-date'] @models.permalink def get_absolute_url(self): return ('articles-item', [], {'pk': str(self.id)})