diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-09-15 20:03:29 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-09-15 20:03:49 +0200 |
commit | 7ebda78b25c9d3f5144a73de1ac9d2fe3036334a (patch) | |
tree | 457ab706effc2afa352e17367bb8859ddaef768f /archaeological_operations/forms.py | |
parent | e0a07d991071f1049a2f7e6d7bfe6bdc02bfcaf8 (diff) | |
download | Ishtar-7ebda78b25c9d3f5144a73de1ac9d2fe3036334a.tar.bz2 Ishtar-7ebda78b25c9d3f5144a73de1ac9d2fe3036334a.zip |
Operation: add judiciary fields
Diffstat (limited to 'archaeological_operations/forms.py')
-rw-r--r-- | archaeological_operations/forms.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index 8ddd42708..d86eb2085 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -1028,6 +1028,12 @@ class CourtOrderedSeizureForm(CustomForm, IshtarForm): name_of_the_protagonist = forms.CharField( label=_(u"Name of the protagonist"), required=False, ) + applicant_authority = forms.CharField( + label=_("Applicant authority"), required=False, + ) + minutes_writer = forms.CharField( + label=_("Writer of the minutes"), required=False, + ) class CollaboratorForm(CustomForm, IshtarForm): |