From f5f157d724684debe35770f13c8c904ea928c6d3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= <tlovinator@gmail.com>
Date: Tue, 8 Aug 2023 02:40:38 +0200
Subject: [PATCH] You can now click the webhook name to go to /webhooks

---
 discord_rss_bot/templates/index.html | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/discord_rss_bot/templates/index.html b/discord_rss_bot/templates/index.html
index 123fce1..e72f8cb 100644
--- a/discord_rss_bot/templates/index.html
+++ b/discord_rss_bot/templates/index.html
@@ -32,7 +32,9 @@
             {% for hook_from_context in webhooks %}
                 <div class="p-2 mb-2 border border-dark">
                     <ul class="list-group">
-                        {{ hook_from_context.name }}
+                        <h1 class="h5">
+                            <a class="text-muted" href="/webhooks">{{ hook_from_context.name }}</a>
+                        </h1>
                         {% for feed_webhook in feeds %}
                             {% set feed = feed_webhook["feed"] %}
                             {% set hook_from_feed = feed_webhook["webhook"] %}