From 91c762cff89d7417bfdcfc5ce7f057acf55b2149 Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Sat, 16 May 2026 23:11:03 +0100 Subject: [PATCH] typos and comments --- templates/new_hole.html | 25 +++++++++++++++---------- urls.py | 2 +- 2 files changed, 16 insertions(+), 11 deletions(-) diff --git a/templates/new_hole.html b/templates/new_hole.html index 31464974..64d30372 100644 --- a/templates/new_hole.html +++ b/templates/new_hole.html @@ -84,7 +84,7 @@

Instructions

Refer to the handbook New Cave Datasheet page for what all these mean and how to fill them in.

-

If starting from scrastch, read New Cave Process. +

If starting from scratch, read New Cave Process.

{% csrf_token %} @@ -133,26 +133,31 @@ page for what all these mean and how to fill them in.

What this will do:

-

🚧 under construction. +

-{% endblock %} \ No newline at end of file +

Why we ask for the time the GPS was recorded

+

Because ionospheric disturbance happens on a scale of an hour or so, every few hours, +and is local to an area about ~50km in size. If we continuously record the GPS position +of the potato hut during the expo then we will know if the GPS +position of this cave entrancce was recorded during one of these "bad" periods.

+

Go back and re-record the GPS positon the next day at the exact same point and put that data in the logbook.

+{% endblock %} +

🚧 under construction. \ No newline at end of file diff --git a/urls.py b/urls.py index 916f2fa6..e4a44a1d 100644 --- a/urls.py +++ b/urls.py @@ -259,7 +259,7 @@ trogglepatterns = [ re_path(r'^getEntrances/(?P.*)', get_entrances, name = "get_entrances"), # New hole data input - path('newhole', new_hole, name="new_hole"), + path('newhole', new_hole, name="newhole"), # Cave description pages path('cave/', caveslugfwd, name="caveslugfwd"), path('cave_debug', cave_debug, name="cave_debug"),