summaryrefslogtreecommitdiff
path: root/archaeological_operations/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-02-03 20:17:47 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-02-03 20:17:47 +0100
commit507d9eb44c328e13ffff26e4301d7e80bfc91f4d (patch)
treeb497011ebb4ea4b899eb3c5ebeae6af15c2816c4 /archaeological_operations/models.py
parent7522e7a325fb8ebad5f20bbfb5253b4be24e2cd0 (diff)
parent4509e950fbe35e6f529c4469dfc7802686fce28e (diff)
downloadIshtar-507d9eb44c328e13ffff26e4301d7e80bfc91f4d.tar.bz2
Ishtar-507d9eb44c328e13ffff26e4301d7e80bfc91f4d.zip
Merge branch 'master' into v0.9
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r--archaeological_operations/models.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py
index 795c1a805..448adcd68 100644
--- a/archaeological_operations/models.py
+++ b/archaeological_operations/models.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
-# Copyright (C) 2012-2015 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet>
+# Copyright (C) 2012-2016 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
@@ -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: