Commit 51aadd3c authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

icones

parent ce34c950
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ return [
                                'route' => 'unicaen-evenement',
                                'resource' => PrivilegeController::getResourceId(IndexController::class, 'index'),
                                'order'    => 11002,
//                                'icon' => 'fas fa-angle-right',
                                'icon' => 'fas fa-angle-right',
                                'pages' => [
                                ],
                            ],
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ use UnicaenEvenement\Entity\Db\Type;
 * @var string $icon
 */

if(!isset($icon)){ $icon = "<i class='icon attention'></i>";}
if(!isset($icon)){ $icon = "<i class='icon icon-attention'></i>";}
?>

<span data-bs-toggle="tooltip" data-bs-html="true" title="<?php echo $type->getLibelle(); ?>">
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ $canSupprimer = $this->isAllowed(EvenementinstancePrivileges::getResourceId(Even
                <?php echo $this->type($event->getType())->render(); ?>
                <?php echo $event->getNom(); ?>
                <?php if ($event->getDescription()) : ?>
                    <span class="icon information" data-bs-toggle="tooltip" data-bs-html="true"
                    <span class="icon icon-information" data-bs-toggle="tooltip" data-bs-html="true"
                        title="<?php echo htmlentities($event->getDescription()); ?>"></span>
                <?php endif; ?>
            </td>
+4 −4
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ $canEffacerEtat = $this->isAllowed(EvenementetatPrivileges::getResourceId(Ev
        href="<?php echo $this->url('unicaen-evenement/etat/ajouter', [], [], true); ?>"
        class="btn btn-primary ajax-modal" data-event="modification"
    >
        <i class="fas fa-plus"></i>
        <span class="icon icon-ajouter"></span>
        Ajouter un état
    </a>
    </div>
@@ -86,14 +86,14 @@ $canEffacerEtat = $this->isAllowed(EvenementetatPrivileges::getResourceId(Ev
                    "lengthMenu": "Afficher _MENU_ &eacute;l&eacute;ments",
                    "search": "Filtre de recherche : _INPUT_",
                    "loadingRecords": "Chargement en cours...",
                    "info": "<small class=\"text-highlight\">Affichage : <strong><i class=\"far fa-list-alt\"></i> _START_ - _END_ sur _TOTAL_</strong></small>",
                    "info": "<small class=\"text-highlight\">Affichage : <strong><span class=\"icon icon-listing\"></span> _START_ - _END_ sur _TOTAL_</strong></small>",
                    "infoEmpty": "",
                    "infoFiltered": "<small class=\"text-highlight\">(_MAX_ &eacute;l&eacute;ments au total)</small>",
                    "emptyTable": "Aucune donnée disponible.",
                    "zeroRecords": "Aucun enregistrement trouvé.",
                    "paginate": {
                        "previous": "<i class=\"fas fa-chevron-left\"></i>",
                        "next": "<i class=\"fas fa-chevron-right\"></i>"
                        "previous": "<span class=\"icon icon-precedent\"></span>",
                        "next": "<span class=\"icon icon-suivant\"></span>"
                    }
                },
            });
+3 −3
Original line number Diff line number Diff line
@@ -56,14 +56,14 @@ use UnicaenEvenement\Entity\Db\Journal;
                    "lengthMenu": "Afficher _MENU_ &eacute;l&eacute;ments",
                    "search": "Filtre de recherche : _INPUT_",
                    "loadingRecords": "Chargement en cours...",
                    "info": "<small class=\"text-highlight\">Affichage : <strong><i class=\"far fa-list-alt\"></i> _START_ - _END_ sur _TOTAL_</strong></small>",
                    "info": "<small class=\"text-highlight\">Affichage : <strong><span class=\"icon icon-listing\"></span> _START_ - _END_ sur _TOTAL_</strong></small>",
                    "infoEmpty": "",
                    "infoFiltered": "<small class=\"text-highlight\">(_MAX_ &eacute;l&eacute;ments au total)</small>",
                    "emptyTable": "Aucune donnée disponible.",
                    "zeroRecords": "Aucun enregistrement trouvé.",
                    "paginate": {
                        "previous": "<i class=\"fas fa-chevron-left\"></i>",
                        "next": "<i class=\"fas fa-chevron-right\"></i>"
                        "previous": "<span class=\"icon icon-precedent\"></span>",
                        "next": "<span class=\"icon icon-suivant\"></span>"
                    }
                },
            });
Loading