summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/views/caves.py11
-rw-r--r--core/views/survex.py2
2 files changed, 1 insertions, 12 deletions
diff --git a/core/views/caves.py b/core/views/caves.py
index 960d373..acd75a6 100644
--- a/core/views/caves.py
+++ b/core/views/caves.py
@@ -303,7 +303,6 @@ def edit_cave(request, path = "", slug=None):
The format for the file being saved is in templates/dataformat/cave.xml
It does save the data into into the database directly, not by parsing the file.
- It does NOT yet commit to the git repo
'''
message = ""
if slug is not None:
@@ -525,13 +524,3 @@ def qm(request,cave_id,qm_id,year,grade=None, blockname=None):
return render(request,'errors/badslug.html', {'badslug': f'QM.DoesNotExist blockname is not empty string {cave_id=} {year=} {qm_id=} {grade=} {blockname=}'})
-# def get_qms(request, caveslug):
- # '''Does not crash, but just returns a text list of the entrances for a cave.
- # Used internally by the JSON export code? Archeology required..
- # cf get_entrances() above
- # '''
- # try:
- # cave = Cave.objects.get(caveslug__slug = caveslug)
- # except:
- # return render(request,'errors/badslug.html', {'badslug': caveslug})
- # return render(request,'options.html', {"items": [(q.slug(), q.slug()) for q in cave.QMs()]})
diff --git a/core/views/survex.py b/core/views/survex.py
index dc225bd..b6548b6 100644
--- a/core/views/survex.py
+++ b/core/views/survex.py
@@ -459,7 +459,7 @@ def survexcaveslist(request):
def survexcavesingle(request, survex_cave):
'''parsing all the survex files of a single cave and showing that it's consistent and can find all
- the files and people. Should explicity fix the kataster number thing.
+ the files and people. Should explicitly fix the kataster number thing.
kataster numbers are not unique across areas. This used to be a db constraint but we need to manage
this ourselves as we don't want the parser aborting with an error message.