From ae3f4c55e95ab60f82c4db14ac8bedf59d032ce1 Mon Sep 17 00:00:00 2001 From: Raphael Odini Date: Thu, 28 Sep 2023 10:09:41 +0200 Subject: [PATCH] Improve message display --- config/settings/base.py | 2 +- lemarche/templates/tenders/_detail_contact.html | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/config/settings/base.py b/config/settings/base.py index ae8cb278b..388030cfc 100644 --- a/config/settings/base.py +++ b/config/settings/base.py @@ -785,7 +785,7 @@ "https://docs.google.com/forms/d/e/1FAIpQLScx1k-UJ-962_rSgPJGabc327gGjFUho6ypgcZHCubuwTl7Lg/viewform" ) TALLY_NPS_FORM_ID = env.str("TALLY_NPS_FORM_ID", "") -APPROCH_USER_ID = env.str("APPROCH_USER_ID", "") +APPROCH_USER_ID = env.int("APPROCH_USER_ID", 0) # Misc diff --git a/lemarche/templates/tenders/_detail_contact.html b/lemarche/templates/tenders/_detail_contact.html index 4027f19a4..14e4aaaff 100644 --- a/lemarche/templates/tenders/_detail_contact.html +++ b/lemarche/templates/tenders/_detail_contact.html @@ -40,18 +40,24 @@

{% endif %} + {% if tender.can_display_contact_external_link %}
{% if tender.author.id == APPROCH_USER_ID %}

- Ce projet d'achat a été publié sur la plateforme APProch. + Ce projet d'achat a été publié sur la plateforme APProch. +
Pour plus d'informations, pour être informé des mises à jour sur ce projet ou pour indiquer votre intérêt auprès de l'acheteur public, cliquez sur le lien ci-dessous.

{% endif %} - {{ tender.external_link_title|safe }} + {% if tender.author.id == APPROCH_USER_ID %} + Ça m'intéresse + {% else %} + {{ tender.external_link_title|safe }} + {% endif %}