diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-02-08 16:51:35 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-04-16 16:41:50 +0200 |
commit | ea1351c32d4a34e0eaf6ac4cba77135c3350de67 (patch) | |
tree | ba1b7c99e3405101c44e63bc555f9f72b527c289 /archaeological_finds/models_finds.py | |
parent | 6e95beabf26ddd3d8de69e34dfbfb97bc1625d80 (diff) | |
download | Ishtar-ea1351c32d4a34e0eaf6ac4cba77135c3350de67.tar.bz2 Ishtar-ea1351c32d4a34e0eaf6ac4cba77135c3350de67.zip |
✨ find/document fields: forms, searches
fields: quantity_comment, technical_areas, technical_processes, rights_owner, licenses, copyright, shooting_angle.
Diffstat (limited to 'archaeological_finds/models_finds.py')
-rw-r--r-- | archaeological_finds/models_finds.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index 6c086ea93..0df6cdf75 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -1615,6 +1615,14 @@ class Find( pgettext_lazy("key for text search", "functional-area"), "functional_areas__label__iexact", ), + "technical_areas": SearchAltName( + pgettext_lazy("key for text search", "technical-area"), + "technical_areas__label__iexact", + ), + "technical_processes": SearchAltName( + pgettext_lazy("key for text search", "technical-process"), + "technical_processes__label__iexact", + ), "base_finds__context_record__operation__address": SearchAltName( pgettext_lazy("key for text search", "operation-address"), "base_finds__context_record__operation__address__iexact", |