also show final hookset/tug

This commit is contained in:
insects 2025-02-06 11:48:20 +01:00
parent 3132038058
commit 9397de1d33
2 changed files with 14 additions and 0 deletions

View file

@ -80,6 +80,16 @@ pub fn main_page(state: State<Arc<AppState>>, 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() {

View file

@ -92,3 +92,7 @@ section.alwaysup {
vertical-align: middle;
color: gray;
}
.catchpath:has(.tug) {
margin-right: 9px;
}