<p>
    <label for="medewerker">medewerker</label>
     <div class="input-field col s12 m6">
    <select name="gebruiker_id" class="select">
     <option value="" disabled selected> kies een medewerker</option>
        <?php 
foreach ($gebruiker as $af) {
    ?>
            <?php 
    if ($af->rol == 'admin') {
        ?>
                <option value="<?php 
        echo $af->id;
        ?>
"><?php 
        echo $this->escaper->escapeHtml(Phalcon\Text::upper($af->voornaam));
        ?>
</option>
            <?php 
    }
    ?>
        <?php 
}
?>
    </select>
    </div>
</p>
<p>
    <?php 
echo $this->tag->submitButton(array('bevestig'));
?>
    </thead>
    <tbody>
        <?php 
foreach ($classement as $classement) {
    ?>
            <tr>
                <td><?php 
    echo $classement->joueur->id;
    ?>
</td>
                <td><?php 
    echo $classement->rang;
    ?>
</td>
                <td><?php 
    echo Phalcon\Text::upper($classement->joueur->nom);
    ?>
</td>
                <td><?php 
    echo ucwords($classement->joueur->prenom);
    ?>
</td>
                <td><?php 
    echo ucwords($classement->joueur->pays->libelle);
    ?>
</td>
                <td><?php 
    echo $classement->points;
    ?>
</td>
                <td><?php 
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
        <title><?php 
echo Phalcon\Text::upper($title);
?>
</title>
        <link rel="stylesheet" href="/css/style.css">
        <script src="/js/jquery.js"></script>
        <script src="/js/angular.min.js"></script>
        <script src="/js/index.js"></script>
        <script src="/js/main.js"></script>
    </head>
    <body>
        <header>
            <div class="company"><img src="/img/nahuasuan.png" /> 哪划算网络有限公司</div>
            <div class="user">
                <span>欢迎您:<span class="username"><?php 
echo $user;
?>
</span><a href="javascript:chpasswd()">修改密码</a><a href="/backend/login/logout">退出</a></span>
            </div>
        </header>
        <div class="container">
            <div class="menu">
                <div class="menu">
                    <?php 
                    </div>
                </th>
                <th>Action</th>
            </tr>
            </thead>
            <tbody>
            <?php 
foreach ($joueurs as $joueur) {
    ?>
            <tr>
                <td><?php 
    echo $joueur->id;
    ?>
</td>
                <td><?php 
    echo Phalcon\Text::upper($joueur->nom);
    ?>
</td>
                <td><?php 
    echo ucwords($joueur->prenom);
    ?>
</td>
                <td><?php 
    echo ucwords($joueur->pays->libelle);
    ?>
</td>
                <td>
                    <?php 
    echo $this->tag->linkTo(array('joueur/view/' . $joueur->id, '<span class="glyphicon glyphicon-eye-open"></span>', 'class' => 'btn btn-xs btn-info'));
    ?>
                    <?php