}
?>
            </tbody>
        </table>
        <br />
        <h3>Ostatní uživatelé</h3>
        <table class="table table-striped">
            <thead>
                <tr style="text-align: center;">
                    <th>ID</th>
                    <th>Jméno</th>
                    <th>Email</th>
                    <th>Organizace</th>
                    <th>Role</th>
                    <th></th>
                </tr>
            </thead>
            <tbody>
                <?php 
$temps = $settingModel->getUsers();
foreach ($temps as $temp) {
    echo '<tr><td style="text-align: left;">' . $temp['id_user'] . '</td><td style="text-align: left;">' . $temp['name'] . '</td><td style="text-align: left;">' . $temp['email'] . '</td><td style="text-align: left;">' . $temp['organisation'] . '</td><td style="text-align: left;">' . $temp['description'] . '</td>';
    echo '<td style="text-align: right;">' . '<a href="index.php?setting=editRole&id=' . $temp['id_user'] . '" class="btn btn-success btn-xs"><i class="fa fa-pencil"></i>&nbsp;&nbsp;Změnit roli</a></td>';
}
?>
            </tbody>
        </table>

    </header>
</div>