Commit 8a27a116 authored by joriot221's avatar joriot221
Browse files

correction tri

parent 1f403c6f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -30,6 +30,7 @@ class GroupeTypeFormationSaisieForm extends AbstractForm

        $this->get('libelleCourt')->setLabel('Libellé court');
        $this->get('libelleLong')->setLabel('Libellé long');
        $this->get('pertinenceNiveau')->setLabel('Suffixer l\'année en fin de nom');

        $this->addSubmit();

+3 −2
Original line number Diff line number Diff line
@@ -23,7 +23,8 @@ echo $this->messenger()->addCurrentMessagesFromFlashMessenger();
<h1 class="page-header">Gestion des types de formations</h1>
<div class="triables ui-sortable">
    <?php foreach ($groupeTypeFormations as $groupeTypeFormation): ?>
        <div class="panel panel-default champ-triable" data-id= <?php echo $groupeTypeFormation->getId() ?>>
        <div class="champ-triable" data-id= <?php echo $groupeTypeFormation->getId() ?>>
            <div class="panel panel-default">
                <div class="panel-heading"><?= $groupeTypeFormation->getLibelleLong(); ?> (<?= $groupeTypeFormation->getLibelleCourt(); ?>)
                    <span class="badge badge-info"><?= affBooleen($groupeTypeFormation->isPertinenceNiveau()); ?></span>
                    <span class="badge"><?= $groupeTypeFormation->getSource()->getLibelle(); ?></span>
@@ -81,7 +82,7 @@ echo $this->messenger()->addCurrentMessagesFromFlashMessenger();

            </div>
            </div>

        </div>
    <?php endforeach; ?>
</div>
<?php if ($canEdit): ?>