diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2020-07-06 01:24:43 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2020-07-06 01:24:43 +0100 |
commit | 8530b0643d552dbaaeef42c8598afd9402338793 (patch) | |
tree | 801c03e5327898270d64e9297629544122f29a3e /core/views_survex.py | |
parent | 3f9971d2ee16836095d30785a68e80aefffea949 (diff) | |
download | troggle-8530b0643d552dbaaeef42c8598afd9402338793.tar.gz troggle-8530b0643d552dbaaeef42c8598afd9402338793.tar.bz2 troggle-8530b0643d552dbaaeef42c8598afd9402338793.zip |
person attribution of surveyed length working
Diffstat (limited to 'core/views_survex.py')
-rw-r--r-- | core/views_survex.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/views_survex.py b/core/views_survex.py index 2a199d3..76e79dc 100644 --- a/core/views_survex.py +++ b/core/views_survex.py @@ -348,10 +348,10 @@ def survexcaveslist(request): # parsing all the survex files of a single cave and showing that it's consistent and can find all the files and people # doesn't use recursion. just writes it twice -# currently produces title and blank page.. link test is "dates and explorers" +# currently not showing Explorers or Titles. link test from SurvexFile page is "dates and explorers" def survexcavesingle(request, survex_cave): breload = False cave = Cave.objects.get(kataster_number=survex_cave) if breload: - parsers.survex.ReloadSurvexCave(survex_cave) + parsers.survex.ReloadSurvexCave(survex_cave) # does not exit now, needs re-writing to work. return render_to_response('svxcavesingle.html', {'settings': settings, "cave":cave }) |