diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-10-12 00:58:20 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-10-12 00:58:20 +0300 |
commit | d3a7a9823a025f84921561882b3049765105d7fa (patch) | |
tree | bdb946fda56bcaba13ace17a35dd8bcbc5cd8020 /core/views/prospect.py | |
parent | 3b1fd56fe4b09ffc9203c3109fcd05ff440732ef (diff) | |
download | troggle-d3a7a9823a025f84921561882b3049765105d7fa.tar.gz troggle-d3a7a9823a025f84921561882b3049765105d7fa.tar.bz2 troggle-d3a7a9823a025f84921561882b3049765105d7fa.zip |
remove exact station
Diffstat (limited to 'core/views/prospect.py')
-rw-r--r-- | core/views/prospect.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/core/views/prospect.py b/core/views/prospect.py index e9d3fde..561c6d3 100644 --- a/core/views/prospect.py +++ b/core/views/prospect.py @@ -265,10 +265,8 @@ def prospecting_image(request, name): E, N = e.easting, e.northing if e.tag_station: st = e.tag_station - elif e.exact_station: - st = e.exact_station - elif e.exact_station: - st = e.exact_station + elif e.other_station: + st = e.other_station else: # print(f' No tag - {e.name} ') continue |