diff --git a/changedetectionio/blueprint/tags/templates/groups-overview.html b/changedetectionio/blueprint/tags/templates/groups-overview.html index 30ddfe181b3..500ed85813c 100644 --- a/changedetectionio/blueprint/tags/templates/groups-overview.html +++ b/changedetectionio/blueprint/tags/templates/groups-overview.html @@ -44,7 +44,11 @@ {% for uuid, tag in available_tags %} - Mute notifications + {% if not tag.notification_muted %} + Mute notifications + {% else %} + UnMute notifications + {% endif %} {{ "{:,}".format(tag_count[uuid]) if uuid in tag_count else 0 }} {{ tag.title }} diff --git a/changedetectionio/templates/watch-overview.html b/changedetectionio/templates/watch-overview.html index d6632cbed5c..44b444e7c44 100644 --- a/changedetectionio/templates/watch-overview.html +++ b/changedetectionio/templates/watch-overview.html @@ -108,7 +108,11 @@ {% else %} UnPause checks {% endif %} - Mute notifications + {% if not watch.notification_muted %} + Mute notifications + {% else %} + UnMute notifications + {% endif %} {{watch.title if watch.title is not none and watch.title|length > 0 else watch.url}}