diff options
author | Cefin <kevon@tuta.io> | 2021-11-24 13:00:06 +0000 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-07-08 09:58:49 +0200 |
commit | d78bfede5e34e66037bd583614b667e886e73f6b (patch) | |
tree | 00aaffcad1d22a801f0d88e4b54b7b2950b0859b | |
parent | c05c2e541035ba8d7635b74dbacf12f2a8777aae (diff) | |
download | Ishtar-d78bfede5e34e66037bd583614b667e886e73f6b.tar.bz2 Ishtar-d78bfede5e34e66037bd583614b667e886e73f6b.zip |
add scientist in charge column on operation search #5197
-rw-r--r-- | archaeological_operations/models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index a5e68ec65..43a184fcf 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -795,6 +795,7 @@ class Operation( "year", "cached_towns_label", "common_name", + "scientist__raw_name", "operation_type__label", "start_date", "excavation_end_date", @@ -879,6 +880,7 @@ class Operation( "scientist__title": _("Scientist (title)"), "scientist__surname": _("Scientist (surname)"), "scientist__name": _("Scientist (name)"), + "scientist__raw_name": _("Scientist in charge"), "scientist__attached_to__name": _("Scientist - Organization (name)"), "in_charge__title": _("Scientific monitor (title)"), "in_charge__surname": _("Scientific monitor (surname)"), |