Skip to content
Snippets Groups Projects
Commit 7dfa2430 authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

Nettoyage affichage

parent 0742adb5
Branches
Tags
No related merge requests found
Pipeline #16047 passed
......@@ -25,7 +25,7 @@ $this->headTitle("Affichage des paramètres");
if ($selection !== null) $categories = [ $selection ];
?>
<div
<h1 class="page-header">
Affichage des paramètres
</h1>
......@@ -119,15 +119,18 @@ if ($selection !== null) $categories = [ $selection ];
</td>
<td>
<a <?php /** @see \Application\Controller\ParametreController::modifierValeurAction() */?>
href="<?php echo $this->url('parametre/modifier-valeur', ['parametre' => $parametre->getId()], [], true); ?>" title="Modifier la valeur du paramètre <strong><?php echo $parametre->getCode(); ?></strong"
href="<?php echo $this->url('parametre/modifier-valeur', ['parametre' => $parametre->getId()], [], true); ?>"
title="Modifier la valeur du paramètre [<?php echo $parametre->getCode(); ?>]"
class="ajax-modal" data-event="modification" >
<i class="fas fa-pencil-alt"></i></a>
<a <?php /** @see \Application\Controller\ParametreController::modifierAction() */?>
href="<?php echo $this->url('parametre/modifier', ['parametre' => $parametre->getId()], [], true); ?>" title="Modifier le paramètre <strong><?php echo $parametre->getCode(); ?></strong"
href="<?php echo $this->url('parametre/modifier', ['parametre' => $parametre->getId()], [], true); ?>"
title="Modifier le paramètre [<?php echo $parametre->getCode(); ?>]"
class="ajax-modal" data-event="modification">
<i class="fas fa-cog"></i></a>
<a <?php /** @see \Application\Controller\ParametreController::supprimerAction() */?>
href="<?php echo $this->url('parametre/supprimer', ['parametre' => $parametre->getId()], [], true); ?>" title="Supprimer le paramètre <strong><?php echo $parametre->getCode(); ?></strong"
href="<?php echo $this->url('parametre/supprimer', ['parametre' => $parametre->getId()], [], true); ?>"
title="Supprimer le paramètre [<?php echo $parametre->getCode(); ?>]"
class="ajax-modal disabled" data-event="modification" disabled>
<i class="fas fa-times disabled"></i></a>
</td>
......@@ -139,6 +142,7 @@ if ($selection !== null) $categories = [ $selection ];
<br/>
<?php endforeach; ?>
<script>
$(function () {
$('body')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment