1<div align="center">
2    <script>tables.showTable(<?php echo $tableName ?>, <?php echo $csrfNumber ?>, <?php echo $url ?>, <?php echo $postData ?>, <?php echo $columns ?>);</script>
3
4    <div class="tableContainer">
5        <table id="<?php echo htmlspecialchars($table->getName()) ?>" class="table table-striped table-bordered table-condensed table-hover">
6            <thead><tr><?php
7                    foreach ($table->getColumns() as $name => $col) {
8                        echo "<th>" . $col->getLabel() . "</th>";
9                    }
10                    ?></tr></thead>
11        </table>
12    </div>
13</div>
14
15<input type="hidden" id="SUP_PROF" name="SUP_PROF" value="">
16<input type="hidden" id="MODIF" name="MODIF" value="">
17<input type="hidden" id="SELECT" name="SELECT" value="">
18<input type="hidden" id="OTHER" name="OTHER" value="">
19<input type="hidden" id="ACTIVE" name="ACTIVE" value="">
20<input type="hidden" id="CONFIRM_CHECK" name="CONFIRM_CHECK" value="">
21<input type="hidden" id="OTHER_BIS" name="OTHER_BIS" value="">
22<input type="hidden" id="OTHER_TER" name="OTHER_TER" value="">
23
24<?php if ($_SESSION['OCS']['DEBUG'] == 'ON'): ?>
25    <center>
26        <div id="<?php echo htmlspecialchars($table->getName()) ?>_debug" class="alert alert-info" role="alert">
27            <b>[DEBUG]TABLE REQUEST[DEBUG]</b>
28            <hr>
29            <b class="datatable_request" style="display:none;">LAST REQUEST:</b>
30            <div></div>
31        </div>
32    </center>
33    <?php
34 endif ?>