From dd4aa17e098816038d2a8593714fd5dcae223b50 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Mon, 10 Apr 2006 12:28:36 +0000 Subject: [PATCH] =?UTF-8?q?Ajout=20bouton=20"cr=E9er=20proposition"=20dans?= =?UTF-8?q?=20l'onglet=20"proposition=20commerciale"=20d'un=20projet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/projet/propal.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/htdocs/projet/propal.php b/htdocs/projet/propal.php index 15cfadc750b..7863b522f2c 100644 --- a/htdocs/projet/propal.php +++ b/htdocs/projet/propal.php @@ -119,6 +119,18 @@ print ''.$langs->trans("Ref").''.$projet->ref.''; print ''.$langs->trans("Label").''.$projet->title.''; print ''; +/* + * Barre d'action + * + */ + print '
'; + + if ($conf->propal->enabled && $user->rights->propale->creer) + { + $langs->load("propal"); + print ''.$langs->trans("AddProp").''; + } + $propales = $projet->get_propal_list(); if (sizeof($propales)>0 && is_array($propales))