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_operations | |
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_operations')
-rw-r--r-- | archaeological_operations/forms.py | 1 | ||||
-rw-r--r-- | archaeological_operations/models.py | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index 2340d36be..cf9df8594 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -553,6 +553,7 @@ class OperationSelect(GeoItemSelect): reverse_lazy('autocomplete-archaeologicalsite'), associated_model=models.ArchaeologicalSite), validators=[valid_id(models.ArchaeologicalSite)]) + associated_file__isnull = forms.NullBooleanField(label=_("Has an associated file?")) history_creator = forms.IntegerField( label=_("Created by"), widget=widgets.JQueryAutoComplete( diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 50dcd20f3..e847429a0 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -1020,6 +1020,7 @@ class Operation( "documents__image__isnull", "documents__associated_file__isnull", "documents__associated_url__isnull", + "associated_file__isnull", ] DATED_FIELDS = BaseHistorizedItem.DATED_FIELDS + [ "start_date", @@ -1215,6 +1216,10 @@ class Operation( "operator_reference": SearchAltName( pgettext_lazy("key for text search", "operator-reference"), "operator_reference__iexact" ), + "associated_file__isnull": SearchAltName( + pgettext_lazy("key for text search", "has-archeo-file"), + "associated_file__isnull" + ), "abstract": SearchAltName( pgettext_lazy("key for text search", "abstract"), "abstract__iexact" ), |