diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2024-07-23 15:52:04 +0200 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2024-07-23 15:52:04 +0200 |
commit | ca103fde229f31a95ebbdd5b65283f1878cc4417 (patch) | |
tree | ea676266b4ed871c6c77260dde88fdad89dac0e7 /core/views/logbooks.py | |
parent | a2f4591f725026c224e11ae7f5265546bcf5bba9 (diff) | |
download | troggle-ca103fde229f31a95ebbdd5b65283f1878cc4417.tar.gz troggle-ca103fde229f31a95ebbdd5b65283f1878cc4417.tar.bz2 troggle-ca103fde229f31a95ebbdd5b65283f1878cc4417.zip |
more debug for logbook edits
Diffstat (limited to 'core/views/logbooks.py')
-rw-r--r-- | core/views/logbooks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/views/logbooks.py b/core/views/logbooks.py index 5d9dca2..5f560e8 100644 --- a/core/views/logbooks.py +++ b/core/views/logbooks.py @@ -230,7 +230,7 @@ def logentrydelete(request, year): print(f" - '{i}' {request.POST[i]}") eslug = request.POST["entry_slug"] entry = LogbookEntry.objects.get(slug=eslug) - # OK we delete it formt he db and then re-save logbook.html file + # OK we delete it from the db and then re-save logbook.html file # to ensure that the permanent record also has the entry deleted. entry.delete() |