Mercurial > public > madeira
view articles/models.py @ 184:6508aef37131
Update home page with Ancient Winds quotes.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 16 Jan 2016 15:01:25 -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)})