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

Ajout de tri sur certains tableaux

parent 2f963819
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@ Version 3.2.7 (XX/XX/2023)
- Ajout d'un avertissement dans la fenêtre modal de confirmation de suppression de fiche métier si une ou plusieurs fiches de postes utilisent cette fiche métier  
- Ajout d'une garde pour empécher la modification de la convocation si l'entretien est au moins validé par le responsable
- Ajout des accès directs vers les agents depuis les listes : métier, corps, grades, correspondances, emploi-types
- Ajout de tri sur certains tableaux

Modification en BD
---
+11 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ use Application\Provider\Privilege\AgentPrivileges;

Voue êtes responsable de <?php echo count($agents); ?> agent·es.

<table class="table table-condensed">
<table class="table table-condensed datatable" id="agents">
    <thead>
    <tr>
        <th> Dénomination </th>
@@ -60,3 +60,13 @@ Voue êtes responsable de <?php echo count($agents); ?> agent·es.
    <?php endforeach; ?>
    </tbody>
</table>

<script>
    $(document).ready(function() {
        $("table#agents").DataTable( {
            'paging' : false,
            'searching' : true,
            'info' : false,
        });
    });
</script>
+13 −2
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ $date = new DateTime();
    La modélisation des fiches de poste va être repensée.
</div>

<table class="table table-condensed table-hover">
<table class="table table-condensed table-hover datatable" id="fiches">
    <thead>
        <tr>
            <th> Agent </th>
@@ -265,3 +265,14 @@ $date = new DateTime();
        color: lightgrey;
    }
</style>


<script>
    $(document).ready(function() {
        $("table#fiches").DataTable( {
            'paging' : false,
            'searching' : true,
            'info' : false,
        });
    });
</script>