From ae82e8a16ea3354a444493abf6a563884a92b224 Mon Sep 17 00:00:00 2001 From: Jon Seager Date: Tue, 3 Feb 2026 21:17:06 +0000 Subject: [PATCH] feat(timeline): show "View on Map / Copy" for cafe position Replace raw coordinates with a "View on Map" link and a "Copy" button that copies lat/lon to the clipboard. --- templates/partials/timeline_month.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/templates/partials/timeline_month.html b/templates/partials/timeline_month.html index fffee63..0d30a83 100644 --- a/templates/partials/timeline_month.html +++ b/templates/partials/timeline_month.html @@ -89,7 +89,13 @@ {% for detail in event.details %}
{{ detail.label }}
- {% if let Some(url) = detail.link %} + {% if detail.label.eq_ignore_ascii_case("position") && detail.link.is_some() %} +
+ View on Map + / + +
+ {% else if let Some(url) = detail.link %}
{{ detail.value }}
{% else %}
{{ detail.value }}