diff options
Diffstat (limited to 'archaeological_operations/forms.py')
-rw-r--r-- | archaeological_operations/forms.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index 9906709d9..bb2393ab9 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -997,6 +997,22 @@ OperationFormModifGeneral.associated_models = \ OperationFormModifGeneral.associated_models['associated_file'] = File +class CourtOrderedSeizureForm(CustomForm, IshtarForm): + form_label = _(u"Court-ordered seizure") + form_admin_name = _(u"Operation - 015 - Court-ordered seizure") + form_slug = "operation-015-court-ordered-seizure" + + seizure_name = forms.CharField( + label=_(u"Seizure name"), required=False, + ) + official_report_number = forms.CharField( + label=_(u"Official report number"), required=False, + ) + name_of_the_protagonist = forms.CharField( + label=_(u"Name of the protagonist"), required=False, + ) + + class CollaboratorForm(CustomForm, IshtarForm): form_label = _(u"Collaborators") form_admin_name = _(u"Operation - 020 - Collaborators") |