diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-09-11 12:24:21 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-09-11 12:34:19 +0200 |
commit | 8b8cd541389412c4960f068848db7e45b71459b9 (patch) | |
tree | cb0f5c8d5ef419afc1d22f93cd8461a57f8cc653 /archaeological_finds/views.py | |
parent | 3ca42ee5280f3e1ee3f74ed6d61a4181188d0450 (diff) | |
download | Ishtar-8b8cd541389412c4960f068848db7e45b71459b9.tar.bz2 Ishtar-8b8cd541389412c4960f068848db7e45b71459b9.zip |
✨ criteria searches: add missing criteria for operation, find and context records (refs #6020) - Context records bulk update: add fields
Criteria searches:
- Finds: context record type
- Operations: has an attached archeo file
- Context records :
- Type of documentation
- Description
- Filling
- General comment
Context records bulk update:
- documentation
- identification
- excavation technic
Diffstat (limited to 'archaeological_finds/views.py')
-rw-r--r-- | archaeological_finds/views.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_finds/views.py b/archaeological_finds/views.py index e6ab574c9..866349ce2 100644 --- a/archaeological_finds/views.py +++ b/archaeological_finds/views.py @@ -41,7 +41,7 @@ from archaeological_context_records.forms import ( RecordFormSelection as RecordFormSelectionTable, ) from archaeological_operations.forms import FinalAdministrativeActDeleteForm -from archaeological_finds import forms +from archaeological_finds import forms, forms_treatments from ishtar_common.views import ( get_autocomplete_generic, @@ -1050,7 +1050,7 @@ def treatmentfile_add(request, basket_pk=None): treatmentfile_deletion_wizard = wizards.TreatmentFileDeletionWizard.as_view( [ - ("selec-treatmentfile_deletion", forms.TreatmentFileFormSelectionMultiple), + ("selec-treatmentfile_deletion", forms_treatments.TreatmentFileFormSelectionMultiple), ("final-treatmentfile_deletion", forms.TreatmentFileDeletionForm), ], label=_("Treatment request deletion"), |