diff options
author | root <root@viserion.(none)> | 2013-04-30 10:45:14 +0000 |
---|---|---|
committer | root <root@viserion.(none)> | 2013-04-30 10:45:14 +0000 |
commit | 2470c7c36a92a5714a7b8d56a1bcab904f23f0d8 (patch) | |
tree | 53e045e9f05bc0e0252dbf059def75d26f3710ae /ishtar_common/models.py | |
parent | 4bb3177058d78646469947c2ed1be5edc055e8a1 (diff) | |
parent | 6e1cff0a016a08d6a19ec8211029a2713538dd58 (diff) | |
download | Ishtar-2470c7c36a92a5714a7b8d56a1bcab904f23f0d8.tar.bz2 Ishtar-2470c7c36a92a5714a7b8d56a1bcab904f23f0d8.zip |
Merge branch 'master' of lysithea.proxience.net:/home/proxience/git/ishtar
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: |