summaryrefslogtreecommitdiffstats
path: root/main/models.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-09-08 00:23:55 -0500
committerDan McGee <dan@archlinux.org>2010-09-08 00:23:55 -0500
commitf637a1eb67ed906b936ef70c0c1d8572edfe5bd7 (patch)
treea039c5890c1b3017f3245eb518b05f35930f14b8 /main/models.py
parent4e193afcea1c6096c05338ee000447fed72eb7ba (diff)
downloadarchweb-f637a1eb67ed906b936ef70c0c1d8572edfe5bd7.tar.gz
archweb-f637a1eb67ed906b936ef70c0c1d8572edfe5bd7.zip
Move news model to an appropriate place
Never would have guessed it should actually be in news/models.py. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'main/models.py')
-rw-r--r--main/models.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/main/models.py b/main/models.py
index f6777f97..d357ef14 100644
--- a/main/models.py
+++ b/main/models.py
@@ -56,23 +56,6 @@ class Donor(models.Model):
db_table = 'donors'
ordering = ['name']
-class News(models.Model):
- id = models.AutoField(primary_key=True)
- author = models.ForeignKey(User, related_name='news_author')
- postdate = models.DateField(auto_now_add=True)
- title = models.CharField(max_length=255)
- content = models.TextField()
- def __unicode__(self):
- return self.title
- class Meta:
- db_table = 'news'
- verbose_name_plural = 'news'
- get_latest_by = 'postdate'
- ordering = ['-postdate', '-id']
-
- def get_absolute_url(self):
- return '/news/%i/' % self.id
-
class Arch(models.Model):
id = models.AutoField(primary_key=True)
name = models.CharField(max_length=255, unique=True)