diff options
Diffstat (limited to 'ishtar_common/models.py')
| -rw-r--r-- | ishtar_common/models.py | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 754944389..61c7de7ff 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -649,6 +649,10 @@ class Source(models.Model):                                      verbose_name=_(u"Receipt date"))      creation_date = models.DateField(blank=True, null=True,                                      verbose_name=_(u"Creation date")) +    reference = models.CharField(_(u"Reference"), max_length=25, null=True, +                                 blank=True) +    internal_reference = models.CharField(_(u"Internal reference"), +                                          max_length=25, null=True, blank=True)      TABLE_COLS = ['title', 'source_type', 'authors',]      class Meta: | 
