echo trad('Autorisation', 'admin');
?>
</th>
                        <th><?php 
echo trad('Description', 'admin');
?>
</th>
                        <th><?php 
echo trad('Acces', 'admin');
?>
</th>
                    </tr>
                    </thead>
                    <tbody>
                        <?php 
foreach ($autorisation->query_liste("SELECT * FROM " . $autorisation->table) as $row) {
    $autorisationdesc = new Autorisationdesc();
    $autorisationdesc->charger($row->id, $lang);
    $autorisation_administrateur = new Autorisation_administrateur();
    $autorisation_administrateur->charger($row->id, $administrateur->id);
    ?>
                            <tr>
                                <td><?php 
    echo $autorisationdesc->titre;
    ?>
</td>
                                <td><?php 
    echo $autorisationdesc->description;
    ?>
</td>
                                <td><input type="checkbox" class="js-genral-permissions" js-id="<?php