diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-09-15 17:43:28 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-09-15 17:43:28 +0200 |
| commit | 5c0212f20e5fc8ac0edc5cc2e70fbc92030e1866 (patch) | |
| tree | b7ee5027fa0440e4a3b5fac390009e001747c85c /archaeological_operations/models.py | |
| parent | d42116c039828ee9a6c8bd3f762ddd3580ec4c4d (diff) | |
| parent | 64000a8c56da1872901f89faeb00df60f4994dd1 (diff) | |
| download | Ishtar-5c0212f20e5fc8ac0edc5cc2e70fbc92030e1866.tar.bz2 Ishtar-5c0212f20e5fc8ac0edc5cc2e70fbc92030e1866.zip | |
Merge branch 'v0.9' into wheezy
Diffstat (limited to 'archaeological_operations/models.py')
| -rw-r--r-- | archaeological_operations/models.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 228e9859e..042cfce2d 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -255,7 +255,9 @@ class Operation(ClosedItem, BaseHistorizedItem, ImageModel, OwnPerms, operator_reference = models.CharField( _(u"Operator reference"), max_length=20, null=True, blank=True) common_name = models.TextField(_(u"Generic name"), null=True, blank=True) - comment = models.TextField(_(u"Comment"), null=True, blank=True) + comment = models.TextField(_(u"General comment"), null=True, blank=True) + scientific_documentation_comment = models.TextField( + _(u"Comment about scientific documentation"), null=True, blank=True) cached_label = models.CharField(_(u"Cached name"), max_length=500, null=True, blank=True) archaeological_sites = models.ManyToManyField( |
