From 76891694d3c19b4aa4cbd1864600951ceb31aa05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Mon, 8 Sep 2025 03:14:01 +0200 Subject: [PATCH] Show drop benefit name besides drop name if different --- templates/twitch/campaign_detail.html | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/templates/twitch/campaign_detail.html b/templates/twitch/campaign_detail.html index e4e3646..206b65b 100644 --- a/templates/twitch/campaign_detail.html +++ b/templates/twitch/campaign_detail.html @@ -110,7 +110,14 @@ {% endif %} {% endfor %} - {{ drop.drop.name }} + +
{{ drop.drop.name }}
+ {% for benefit in drop.drop.benefits.all %} + {% if benefit.name != drop.drop.name %} +
{{ benefit.name }}
+ {% endif %} + {% endfor %} + {% if drop.drop.required_minutes_watched %}{{ drop.drop.required_minutes_watched }} minutes watched{% endif %} {% if drop.drop.required_subs > 0 %} @@ -123,9 +130,9 @@ {% if drop.local_start %}{{ drop.local_start|date:"M j, Y H:i" }}{% endif %} {% if drop.local_start and drop.local_end %}-{% endif %} {% if drop.local_end %}{{ drop.local_end|date:"M j, Y H:i" }}{% endif %} - {{ drop.timezone_name }} + {{ drop.timezone_name }} -
{{ drop.countdown_text }}
+
{{ drop.countdown_text }}
{% endfor %}