Commit 134c0c44 authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

Correction de l'affichage des types d'état

parent e7dab8af
Loading
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -52,10 +52,10 @@ $this->headTitle("Types d'état")
            <tr>
                <th class="col-md-1">Badge</th>
                <th class="col-md-3">Code</th>
                <th class="col-md-5">Libelle</th>
                <th class="col-md-4">Libelle</th>
                <th class="col-md-1">Type</th>
                <th class="col-md-1">Ordre</th>
                <th class="col-md-1">Action</th>
                <th class="col-md-2">Action</th>
            </tr>
            </thead>
            <?php foreach ($dictionnaire[$categorie->getId()] as $type) : ?>
@@ -65,7 +65,6 @@ $this->headTitle("Types d'état")
                    </td>
                    <td> <?php echo $type->getCode(); ?> </td>
                    <td> <?php echo $type->getLibelle(); ?> </td>
                    <td> <?php echo $type->getOrdre(); ?> </td>
                    <td>
                        <?php if ($type->getCategorie()) : ?>
                            <?php echo $this->etatcategorie($type->getCategorie()); ?>
@@ -73,6 +72,8 @@ $this->headTitle("Types d'état")
                            Aucune
                        <?php endif; ?>
                    </td>

                    <td> <?php echo $type->getOrdre(); ?> </td>
                    <td class="action">
                        <?php /** @see \UnicaenEtat\Controller\EtatController::modifierAction() */ ?>
                        <a href="<?php echo $this->url('unicaen-etat/etat-type/modifier', ['type' => $type->getId()], [], true); ?>"