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 | 8100ffc139b6b24805a5b3800bbabe1fb95f3499 (patch) | |
tree | 457ab706effc2afa352e17367bb8859ddaef768f /archaeological_operations/forms.py | |
parent | d7cfe41553e8fec117b9a9daa469efd3b2a022ee (diff) | |
download | Ishtar-8100ffc139b6b24805a5b3800bbabe1fb95f3499.tar.bz2 Ishtar-8100ffc139b6b24805a5b3800bbabe1fb95f3499.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): |