This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
lnapp/views/table.php

30 lines
1.1 KiB
PHP

<table class="table table-striped table-condensed table-hover" id="list-table<?php echo $jssort ? '-'.$jssort : ''; ?>">
<thead><tr><th><?php echo implode('</th><th>',$th); ?></th></tr></thead>
<tbody>
<?php foreach ($td as $details) : ?>
<tr><td><?php echo implode('</td><td>',$details['val']); ?></td></tr>
<?php endforeach ?>
<?php if ($other) : ?>
<tr><td>Other</td><td colspan="<?php #echo count($data)-1; ?>"><?php #printf('(%s) %s',$count,$other); ?></td></tr>
<?php endif ?>
</tbody>
</table>
<?php if ($jssort) : ?>
<div class="pager pager<?php echo $jssort ? '-'.$jssort : ''; ?>">
Page: <select class="input-mini gotoPage"></select>
<i class="icon-fast-backward first"></i>
<i class="icon-step-backward prev"></i>
<span class="pagedisplay"></span> <!-- this can be any element, including an input -->
<i class="icon-step-forward next"></i>
<i class="icon-fast-forward last"></i>
<select class="input-mini pagesize">
<option value="10">10</option>
<option selected="selected" value="25">25</option>
<option value="50">50</option>
<option value="100">100</option>
</select>
Items per page
</div>
<?php endif ?>