From 9397de1d3372772b17def5875eea59d360dde2a7 Mon Sep 17 00:00:00 2001 From: insects Date: Thu, 6 Feb 2025 11:48:20 +0100 Subject: [PATCH] also show final hookset/tug --- src/templates.rs | 10 ++++++++++ static/style.css | 4 ++++ 2 files changed, 14 insertions(+) diff --git a/src/templates.rs b/src/templates.rs index 22ebd26..a2853f5 100644 --- a/src/templates.rs +++ b/src/templates.rs @@ -80,6 +80,16 @@ pub fn main_page(state: State>, with_layout: bool) -> Markup { } } } + @if let Some(hookset) = fish.entry.hookset { + span.catchpath { + img src=(hookset) width="35"; + + @if let Some(tug) = fish.entry.tug { + span.tug { (tug) } + } + } + + } } .meta { @if fish.entry.start_hour.is_some() && fish.entry.end_hour.is_some() { diff --git a/static/style.css b/static/style.css index 473599e..e4c972a 100644 --- a/static/style.css +++ b/static/style.css @@ -92,3 +92,7 @@ section.alwaysup { vertical-align: middle; color: gray; } + +.catchpath:has(.tug) { + margin-right: 9px; +}