From 50fe822d8e0cdc6cd947cd1510ef45d2e4dd9245 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Wed, 4 Feb 2026 14:22:26 +0100 Subject: [PATCH] Adding random tips --- .../blueprint/watchlist/templates/watch-overview.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/changedetectionio/blueprint/watchlist/templates/watch-overview.html b/changedetectionio/blueprint/watchlist/templates/watch-overview.html index b8c0658e1..55e7a2726 100644 --- a/changedetectionio/blueprint/watchlist/templates/watch-overview.html +++ b/changedetectionio/blueprint/watchlist/templates/watch-overview.html @@ -1,5 +1,9 @@ {%- extends 'base.html' -%} {%- block content -%} +{%- set tips = [ + _("Changedetection.io can monitor more than just web-pages! See our plugins!") ~ ' ' ~ _('More info') ~ '', + _("You can also add 'shared' watches.") ~ ' ' ~ _('More info') ~ '' +] -%} {%- from '_helpers.html' import render_simple_field, render_field, render_nolabel_field, sort_by_title -%} @@ -69,7 +73,9 @@ html[data-darkmode="true"] .watch-tag-list.tag-{{ class_name }} { - {{ _('Create a shareable link') }} {{ _("Tip: You can also add 'shared' watches.") }} {{ _('More info') }} + + Tip: {{ tips | random | safe }} +