summaryrefslogtreecommitdiff
path: root/archaeological_operations/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-01-28 21:43:11 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-01-28 21:43:11 +0100
commita1395ed9e2bae7c21154ad0d76e517c54ac0efb3 (patch)
treed371d9989264ec95cbf30079b896c6a6a8a53f75 /archaeological_operations/models.py
parent6fdfd66f9471be6a4cd549f171a631c8a07d9ff3 (diff)
downloadIshtar-a1395ed9e2bae7c21154ad0d76e517c54ac0efb3.tar.bz2
Ishtar-a1395ed9e2bae7c21154ad0d76e517c54ac0efb3.zip
Add abstract to operations
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r--archaeological_operations/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py
index 2703db245..448adcd68 100644
--- a/archaeological_operations/models.py
+++ b/archaeological_operations/models.py
@@ -234,6 +234,7 @@ class Operation(BaseHistorizedItem, OwnPerms, ValueGetter, ShortMenuItem,
record_quality = models.CharField(
_(u"Record quality"), max_length=2, null=True, blank=True,
choices=QUALITY)
+ abstract = models.TextField(_(u"Abstract"), null=True, blank=True)
history = HistoricalRecords()
class Meta: