diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-01-28 20:55:15 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-01-28 20:55:15 +0100 |
commit | 7157eccfa146c4b2d85e98e10ef8d244509769b7 (patch) | |
tree | 4887cfd13b760fa158c65416fd8d64272b53e3e2 /archaeological_operations/views.py | |
parent | c31e7d69af0ed9a223ff0319d9d004549e500f4a (diff) | |
download | Ishtar-7157eccfa146c4b2d85e98e10ef8d244509769b7.tar.bz2 Ishtar-7157eccfa146c4b2d85e98e10ef8d244509769b7.zip |
Allow to search by archaeological sites
Diffstat (limited to 'archaeological_operations/views.py')
-rw-r--r-- | archaeological_operations/views.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archaeological_operations/views.py b/archaeological_operations/views.py index e37a615eb..716151f9f 100644 --- a/archaeological_operations/views.py +++ b/archaeological_operations/views.py @@ -148,6 +148,8 @@ get_operation = get_item( 'associated_file__parcels__parcel_number'), 'history_creator': 'history_creator__ishtaruser__person__pk', + 'archaeological_sites': + 'archaeological_sites__pk', }, ) show_operation = show_item(models.Operation, 'operation') |