2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2024-11-22 15:21:52 +00:00
This commit is contained in:
Philip Sargent 2023-08-30 21:29:51 +03:00
parent d48163f167
commit df86103407
2 changed files with 12 additions and 7 deletions

View File

@ -143,12 +143,17 @@ def logbookedit(request, year=None, slug=None):
# OK this could be done by rendering a template, but for such a small bit of HTML, it is easier to have # OK this could be done by rendering a template, but for such a small bit of HTML, it is easier to have
# it all in one place: here # it all in one place: here
output = f''' output = f'''
<hr />
<div class="tripdate" id="{newslug}">{date}</div> <div class="tripdate" id="{newslug}">{date}</div>
<div class="trippeople"><u>{author}</u>, {others}</div> <div class="trippeople"><u>{author}</u>, {others}</div>
<div class="triptitle">{place} - {title}</div> <div class="triptitle">{place} - {title}</div>
{entry}
<div class="timeug">T/U {tu} hrs</div>''' {entry}
<div class="timeug">T/U {tu} hrs</div>
<hr />
'''
return render( return render(
request, request,
"logbookform.html", "logbookform.html",

View File

@ -59,7 +59,7 @@ LOGBOOK_PARSER_SETTINGS = {
LOGBOOKS_DIR = "years" # subfolder of settings.EXPOWEB LOGBOOKS_DIR = "years" # subfolder of settings.EXPOWEB
ENTRIES = { ENTRIES = {
"2023": 53, "2023": 63,
"2022": 93, "2022": 93,
"2019": 55, "2019": 55,
"2018": 95, "2018": 95,