From 64588fe78a0dab86693a04d93a7478529e861247 Mon Sep 17 00:00:00 2001 From: Florian Schmitt Date: Thu, 15 Feb 2024 15:05:01 +0300 Subject: [PATCH] feat(trajets) : show info text in no result --- templates/bazar/trajets.tpl.html | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/templates/bazar/trajets.tpl.html b/templates/bazar/trajets.tpl.html index d6b56f6..42274a8 100644 --- a/templates/bazar/trajets.tpl.html +++ b/templates/bazar/trajets.tpl.html @@ -2,7 +2,7 @@ setlocale(LC_ALL, 'fr_FR.UTF8', 'fr_FR','fr','fr','fra','fr_FR@euro'); setlocale(LC_TIME, "fr_FR"); include_once 'custom/templates/bazar/circuitscourt.php'; - +$foundFiche = false; if (count($fiches) > 0) { echo $info_res; foreach ($fiches as $fiche) { @@ -17,7 +17,7 @@ if (count($fiches) > 0) { 'eeee d MMMM y à HH:mm', 'fr' )); - + $foundFiche = true; //$date = str_replace(' à 0:00', '', strftime("%A %d %B %Y à %k:%M", strtotime($fiche['date_du_trajet']))); echo '

Trajet du '.$dateFormatted.'

'."\n"; echo '

Producteur concerné

'."\n"; @@ -41,7 +41,9 @@ if (count($fiches) > 0) { } } echo $pager_links; -} else { - echo '
Il y a 0 fiche.
'; } -?> \ No newline at end of file + +if (!$foundFiche) { +echo '
Il n’y a aucun trajet proposé actuellement. A vous de jouer pour en proposer un !
'; +} +?>