diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-11-04 10:40:46 +0200 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-11-04 10:40:46 +0200 |
commit | 55bbccb4ca465e57e658b1d68d96e2d79305963a (patch) | |
tree | ec5e35d2e9a2386e43a4741d0940afa3a959ecbf /core/views/logbooks.py | |
parent | 70c629f455bd55b7cd8d6ce717317fb61bf15980 (diff) | |
download | troggle-55bbccb4ca465e57e658b1d68d96e2d79305963a.tar.gz troggle-55bbccb4ca465e57e658b1d68d96e2d79305963a.tar.bz2 troggle-55bbccb4ca465e57e658b1d68d96e2d79305963a.zip |
add link to exact logbookentry page
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 cd39ab6..d9ae442 100644 --- a/core/views/logbooks.py +++ b/core/views/logbooks.py @@ -229,7 +229,7 @@ def logbookentry(request, date, slug): return render( request, "logbookentry.html", - {"logbookentry": this_logbookentry, "trips": trips, "svxothers": svxothers, "wallets": wallets}, + {"logbookentry": this_logbookentry,"trips": trips, "svxothers": svxothers, "wallets": wallets}, ) else: msg = f' Logbook entry slug:"{slug}" not found in database on date:"{date}" ' |