diff --git a/pilotage/dashboards/admin.py b/pilotage/dashboards/admin.py index 08431df..0faa9aa 100644 --- a/pilotage/dashboards/admin.py +++ b/pilotage/dashboards/admin.py @@ -4,8 +4,7 @@ class DashboardAdmin(admin.ModelAdmin): - list_display = ("title", "metabase_db_id", "category", "active") - + list_display = ("title", "metabase_db_id", "category", "active", "com_alert", "com_alert_description", "com_alert_text") admin.site.register(Dashboard, DashboardAdmin) diff --git a/pilotage/dashboards/models.py b/pilotage/dashboards/models.py index 7eb9e80..28b8e8f 100644 --- a/pilotage/dashboards/models.py +++ b/pilotage/dashboards/models.py @@ -34,6 +34,13 @@ class Meta: "Tally Embed ID", null=True, blank=True, max_length=10 ) active = models.fields.BooleanField("Actif", default=True) + com_alert = models.fields.BooleanField("Encart actif", default=False) + com_alert_description = models.fields.CharField(max_length=250, + default="Enquête utilisateur : votre avis est précieux pour nous aider à améliorer nos tableaux de bord !") + com_alert_text = models.fields.CharField(max_length=500, + default="Jusqu’au 20 octobre, prenez part à notre enquête sur l'usage des tableaux de bord dans vos missions et partagez vos suggestions d'amélioration.") + com_alert_link = models.fields.CharField(max_length=150, + default="https://tally.so/r/nPYGJd") new = models.fields.BooleanField("Nouveau", default=False) def __str__(self): diff --git a/pilotage/templates/dashboards/tableau_de_bord_public.html b/pilotage/templates/dashboards/tableau_de_bord_public.html index c83aae3..4f1c1b4 100644 --- a/pilotage/templates/dashboards/tableau_de_bord_public.html +++ b/pilotage/templates/dashboards/tableau_de_bord_public.html @@ -36,18 +36,7 @@

{% if dashboard.new %}Nouveau{% endif %}

{% if dashboard.description %}
{{ dashboard.description | markdown | safe }}
{% endif %} - - {% if dashboard.metabase_db_id == 408 %} -
- -

- Votre retour est précieux sur ce nouveau tableau de bord ! -

-

- Nous aimerions échanger avec quelques utilisateurs de ce nouveau tableau de bord pour collecter des retours sur son usage, ses points forts et ses points d’amélioration. Vous avez 30 minutes à nous accorder ? Je suis volontaire ! -

-
- {% else %} + {% if dashboard.com_alert %}
@@ -56,12 +45,12 @@

- Enquête utilisateur : votre avis est précieux pour nous aider à améliorer nos tableaux de bord ! + {{ dashboard.com_alert_description }}

-

Jusqu’au 20 octobre, prenez part à notre enquête sur l'usage des tableaux de bord dans vos missions et partagez vos suggestions d'amélioration.

+

{{ dashboard.com_alert_text }}

- Je participe à l’enquête + Je participe à l’enquête