From 35384218b01d8de767df03781473f47bd76da84a Mon Sep 17 00:00:00 2001 From: Norbert Kwizera Date: Wed, 25 Oct 2023 15:26:01 +0200 Subject: [PATCH] Add back the sync status message for inactive polls --- templates/polls/poll_list.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/polls/poll_list.html b/templates/polls/poll_list.html index 1d013434c..eded757ee 100644 --- a/templates/polls/poll_list.html +++ b/templates/polls/poll_list.html @@ -88,6 +88,8 @@

{% trans "Recent poll syncs scheduled every 60min" %} {% elif obj in other_polls %} {% trans "Poll syncs scheduled every 24h" %} + {% elif not obj.is_active %} + {% trans "Not scheduling syncs, not active" %} {% elif not obj.flow_uuid %} {% trans "Not scheduling syncs, no flow for poll" %} {% endif %}