This commit is contained in:
2020-02-09 16:32:51 -05:00
@@ -47,6 +47,88 @@
</div> </div>
<div class="col-xl-2 col-md-12 col-sm-12"> <div class="col-xl-2 col-md-12 col-sm-12">
<!-- Scroll - horizontal and vertical table -->
<section id="horizontal-vertical">
<div class="row">
<div class="col-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Page Contents</h4>
</div>
<div class="card-content">
<div class="card-body card-dashboard">
<div class="table-responsive">
<table class="table nowrap scroll-horizontal-vertical" style="background-color: aliceblue;">
<thead>
<tr>
<th style="width: 35px;">TYP</th>
<th>Title</th>
<th style="width: 30px;">EDT</th>
<th style="width: 30px;">DEL</th>
</tr>
</thead>
<tbody>
<?php
foreach ($page_card_items AS $drow) {
?>
<tr>
<td>ICO</td>
<td><?= $drow->title ?></td>
<td>EDT</td>
<td>DEL</td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--/ Scroll - horizontal and vertical table -->