?>
</h4>
            </div>
            <div class="row">
                <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() as $row) {
    ?>
                        <tr>
                            <td><?php 
    echo $row[tpl_onus::onus() . '_' . tpl_onus::name()];
    ?>
</td>
                            <td><?php 
    echo $row[tpl_onus::onus() . '_' . tpl_onus::description()];
    ?>
</td>
                            <td><?php 
    echo $row[tpl_degree::degree() . '_' . tpl_degree::name()];
    ?>
</td>
                        </tr>