?>
</h4>


                <table class="table table-bordered">
                    <thead>
                    <tr>
                        <td>onus name</td>
                        <td>onus description</td>
                        <td>degree name</td>

                    </tr>
                    </thead>
                    <tbody>
                    <?php 
    foreach ($lib->info_onus_designate($row[tpl_students::id()]) as $rows) {
        ?>
                        <tr>
                            <td><?php 
        echo $rows[tpl_onus::onus() . '_' . tpl_onus::name()];
        ?>
</td>
                            <td><?php 
        echo $rows[tpl_onus::onus() . '_' . tpl_onus::description()];
        ?>
</td>
                            <td><?php 
        echo $rows[tpl_degree::degree() . '_' . tpl_degree::name()];
        ?>
</td>
                        </tr>