diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-04-13 13:23:35 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-04-13 13:23:35 +0200 |
commit | ae9366fc3f24d869fa9cce7c0077d06e6db95571 (patch) | |
tree | 71d968e3d0b0571b4c1d1bef036774f30e98dbcf /archaeological_operations/models.py | |
parent | b790e4875b47e2951a65eedd36dc661079667541 (diff) | |
download | Ishtar-ae9366fc3f24d869fa9cce7c0077d06e6db95571.tar.bz2 Ishtar-ae9366fc3f24d869fa9cce7c0077d06e6db95571.zip |
New type of operation: court-ordered seizure with associated fields (refs #4048)
* models
* migrations
* wizard panel
* forms
* sheet
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r-- | archaeological_operations/models.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 6daf9dc12..12c1cce8e 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -468,6 +468,14 @@ class Operation(ClosedItem, BaseHistorizedItem, ImageModel, OwnPerms, finds_received = models.NullBooleanField( _(u"Finds received"), blank=True, null=True) + # judiciary + seizure_name = models.TextField(_(u"Seizure name"), blank=True, null=True) + official_report_number = models.TextField(_(u"Official report number"), + blank=True, null=True) + name_of_the_protagonist = models.TextField(_(u"Name of the protagonist"), + blank=True, null=True) + + # gis point = models.PointField(_(u"Point"), blank=True, null=True) multi_polygon = models.MultiPolygonField(_(u"Multi polygon"), blank=True, null=True) |