order field for articles
This commit is contained in:
parent
92641790a1
commit
a7018a1039
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user