diff --git a/src/changelog.rs b/src/changelog.rs index bed1248..ec673b1 100644 --- a/src/changelog.rs +++ b/src/changelog.rs @@ -10,8 +10,8 @@ pub fn changelog_page() -> Markup { h2 { "1.2.0" } ul { li { "Improved display of fish conditions, the weather constraints are now shown" } - li { "Color-coded the patch display badges" } li { "The fishing hole name is now also shown next to the fish"} + li { "Color-coded the patch display badges" } } } diff --git a/src/templates.rs b/src/templates.rs index 7fb9ceb..b6a32f0 100644 --- a/src/templates.rs +++ b/src/templates.rs @@ -117,7 +117,7 @@ pub fn fish_list(data: &ViewData) -> Markup { .date data-ts=(clock::to_earth_time(window.start_time).timestamp_millis()) { .inner id=(format!("date-{}", fish.entry.id)) hx-preserve { (clock::to_earth_time(window.start_time).format("%c %Z")) - } + } } } } @@ -154,6 +154,7 @@ pub fn fish_list(data: &ViewData) -> Markup { @if let Some(location_id) = fish.entry.location { @if let Some(location) = data.state.data.db_data.fishing_spots.get(&location_id) { div { + span.zone { (fish.meta.zone_en) } (location.name_en) } } diff --git a/static/style.css b/static/style.css index d0d05fe..ced716a 100644 --- a/static/style.css +++ b/static/style.css @@ -197,3 +197,9 @@ summary:hover { .patch-7 { background: #e5b522; } + +.zone { + font-size: 13px; + color: gray; + margin-right: 4px; +}