order field for articles

This commit is contained in:
sanj 2010-03-19 15:28:55 +05:30
parent 92641790a1
commit a7018a1039

View File

@ -17,6 +17,7 @@ class Issue(models.Model):
class Article(models.Model):
authors = models.ManyToManyField("Contributor", blank=True, null=True)
title = models.CharField(max_length=255)
order = models.IntegerField(blank=True, null=True)
notes = models.TextField(blank=True)
issue = models.ForeignKey(Issue)