Commit de959dc7 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Corrections oubliées pour BS5

parent 7579db48
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ $liveSearch = (bool) ($paramAttributes['liveSearch'] ?? false);
        name="<?php echo $paramName ?>"
        data-live-search="<?php echo $liveSearch ? 'true' : 'false' ?>"
        data-width="<?php echo $width ?>"
        data-html="true"
        data-bs-html="true"
>

<?php foreach ($filter->getOptions() as $data): ?>
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ function afficherActeur(Acteur $a) {
    }
    $title .= "</table>";

    $texte  = "<span title='".$title."' data-bs-toggle='tooltip' data-html='true'>";
    $texte  = "<span title='".$title."' data-bs-toggle='tooltip' data-bs-html='true'>";
    $texte .= $a->getIndividu()->getNomComplet();
    $texte .= "</span>";
    return $texte;
+5 −5
Original line number Diff line number Diff line
@@ -258,13 +258,13 @@ $acteursFormatterCodirecteurs->asSeparated()
                            <a href="<?php echo $this->url($routeName . '/avis/modifier', ['rapportAvis' => $rapportAvis->getId()], ['query' => ['redirect' => $returnUrl]]) ?>"
                               class="btn btn-warning"
                               title="Modifier cet avis ?"
                               data-toggle="confirmation">Modifier l'avis</span></a>
                               data-bs-toggle="confirmation">Modifier l'avis</span></a>
                        <?php endif ?>
                        <?php if ($canSupprimerAvis): ?>
                            <a href="<?php echo $this->url($routeName . '/avis/supprimer', ['rapportAvis' => $rapportAvis->getId()], ['query' => ['redirect' => $returnUrl]]) ?>"
                               class="btn btn-danger"
                               title="Supprimer cet avis ?"
                               data-toggle="confirmation">Supprimer l'avis</span></a>
                               data-bs-toggle="confirmation">Supprimer l'avis</span></a>
                        <?php endif ?>
                    <?php else: ?>
                        <?php if ($canAjouterAvis): ?>
@@ -290,7 +290,7 @@ $acteursFormatterCodirecteurs->asSeparated()
                        <a href="<?php echo $this->url($routeName . '/devalider', ['rapportValidation' => $rapportValidation->getId()], ['query' => ['redirect' => $returnUrl]]) ?>"
                           class="btn btn-danger"
                           title="Dévalider ce rapport ?"
                           data-toggle="confirmationx"
                           data-bs-toggle="confirmationx"
                           data-message="Êtes-vous sûr·e de vouloir dévalider ?">Dévalider</span></a>
                    <?php endif ?>
                <?php else: ?>
@@ -300,7 +300,7 @@ $acteursFormatterCodirecteurs->asSeparated()
                        <a href="<?php echo $this->url($routeName . '/valider', ['rapport' => $rapport->getId(), 'typeValidation' => $typeValidation->getId()], ['query' => ['redirect' => $returnUrl]]) ?>"
                           class="btn btn-success"
                           title="Valider ce rapport ?"
                           data-toggle="confirmationx"
                           data-bs-toggle="confirmationx"
                           data-message="Êtes-vous sûr·e de vouloir valider ce rapport ?">Valider</span></a>
                    <?php endif ?>
                <?php endif ?>
@@ -311,7 +311,7 @@ $acteursFormatterCodirecteurs->asSeparated()
                <?php if ($canDel): ?>
                    <a href="<?php echo $this->url($routeName . '/supprimer', ['rapport' => $rapport->getId()], ['query' => ['redirect' => $returnUrl]]) ?>"
                       title="Supprimer ce rapport ?"
                       data-toggle="confirmationx"
                       data-bs-toggle="confirmationx"
                       data-message="Êtes-vous sûr·e de vouloir supprimer ce rapport ?"><span class="icon icon-delete iconly"></span></a>
                <?php endif; ?>
            </td>
+1 −1
Original line number Diff line number Diff line
@@ -131,7 +131,7 @@ return [
                            'email-contact' => [
                                'label' => 'Email de contact',
                                'route' => 'doctorant/email-contact',
                                'icon' => 'glyphicon glyphicon-envelope',
                                'icon' => 'icon icon-notifier',
                                //'resource' => PrivilegeController::getResourceId('Doctorant\Controller\Doctorant', 'modifier-email-contact'),
                                //'visible' => 'Assertion\\These',
                            ],
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ $appName = $this->appInfos()->nom;

<div class="messenger alert alert-danger ">
    <p>
        <span class="glyphicon glyphicon-exclamation-sign"></span>
        <span class="icon icon-attention"></span>
        Vous avez fait une demande de modification d'adresse électronique de contact et <br>
        un mail vous a été envoyé à l'adresse <strong><?php echo $email ?></strong>.
    </p>
Loading