From 2c045f9335530868ed008e7deb68b4fbb1a63d71 Mon Sep 17 00:00:00 2001 From: Jon Seager Date: Wed, 4 Feb 2026 20:53:19 +0000 Subject: [PATCH] fix(templates): remove dead detail-page links from list tables The detail page routes and templates were removed but list templates still linked to them. Replace the tags with plain text to avoid navigating to non-existent pages. --- templates/partials/cafe_list.html | 8 ++------ templates/partials/roast_list.html | 6 +----- templates/partials/roaster_list.html | 8 ++------ 3 files changed, 5 insertions(+), 17 deletions(-) diff --git a/templates/partials/cafe_list.html b/templates/partials/cafe_list.html index 165dc00..a6b11bd 100644 --- a/templates/partials/cafe_list.html +++ b/templates/partials/cafe_list.html @@ -38,12 +38,8 @@ {{ cafe.created_at }} - - {{ cafe.name }} + + {{ cafe.name }} {{ cafe.country }} diff --git a/templates/partials/roast_list.html b/templates/partials/roast_list.html index a403186..249842c 100644 --- a/templates/partials/roast_list.html +++ b/templates/partials/roast_list.html @@ -41,11 +41,7 @@ {{ roast.created_at }} - {{ roast.name }} + {{ roast.name }} {{ roast.roaster_label }} diff --git a/templates/partials/roaster_list.html b/templates/partials/roaster_list.html index 716f700..1bf6920 100644 --- a/templates/partials/roaster_list.html +++ b/templates/partials/roaster_list.html @@ -38,12 +38,8 @@ {{ roaster.created_at }} - - {{ roaster.name }} + + {{ roaster.name }} {{ roaster.country }}