mirror of
https://github.com/Karaka-Management/oms-Admin.git
synced 2026-02-04 23:48:41 +00:00
draft sorting highlighting
This commit is contained in:
parent
91762b07d6
commit
9007ed29af
|
|
@ -33,12 +33,22 @@ echo $this->getData('nav')->render(); ?>
|
|||
<table id="accountList" class="default">
|
||||
<thead>
|
||||
<tr>
|
||||
<td><?= $this->getHtml('ID', '0', '0'); ?><i class="sort-asc fa fa-chevron-up"></i><i class="sort-desc fa fa-chevron-down"></i>
|
||||
<td><?= $this->getHtml('Status'); ?><i class="sort-asc fa fa-chevron-up"></i><i class="sort-desc fa fa-chevron-down"></i>
|
||||
<td class="wf-100"><?= $this->getHtml('Name'); ?><i class="sort-asc fa fa-chevron-up"></i><i class="sort-desc fa fa-chevron-down"></i>
|
||||
<td><?= $this->getHtml('Activity'); ?><i class="sort-asc fa fa-chevron-up"></i><i class="sort-desc fa fa-chevron-down"></i>
|
||||
<td><?= $this->getHtml('Created'); ?><i class="sort-asc fa fa-chevron-up"></i><i class="sort-desc fa fa-chevron-down"></i>
|
||||
<tbody>
|
||||
<td><?= $this->getHtml('ID', '0', '0'); ?>
|
||||
<input id="accountList-r1-asc" name="accountList-sort" type="radio"><label for="accountList-r1-asc"><i class="sort-asc fa fa-chevron-up"></i></label>
|
||||
<input id="accountList-r1-desc" name="accountList-sort" type="radio"><label for="accountList-r1-desc"><i class="sort-desc fa fa-chevron-down"></i></label>
|
||||
<td><?= $this->getHtml('Status'); ?>
|
||||
<input id="accountList-r2-asc" name="accountList-sort" type="radio"><label for="accountList-r2-asc"><i class="sort-asc fa fa-chevron-up"></i></label>
|
||||
<input id="accountList-r2-desc" name="accountList-sort" type="radio"><label for="accountList-r2-desc"><i class="sort-desc fa fa-chevron-down"></i></label>
|
||||
<td class="wf-100"><?= $this->getHtml('Name'); ?>
|
||||
<input id="accountList-r3-asc" name="accountList-sort" type="radio"><label for="accountList-r3-asc"><i class="sort-asc fa fa-chevron-up"></i></label>
|
||||
<input id="accountList-r3-desc" name="accountList-sort" type="radio"><label for="accountList-r3-desc"><i class="sort-desc fa fa-chevron-down"></i></label>
|
||||
<td><?= $this->getHtml('Activity'); ?>
|
||||
<input id="accountList-r4-asc" name="accountList-sort" type="radio"><label for="accountList-r4-asc"><i class="sort-asc fa fa-chevron-up"></i></label>
|
||||
<input id="accountList-r4-desc" name="accountList-sort" type="radio"><label for="accountList-r4-desc"><i class="sort-desc fa fa-chevron-down"></i></label>
|
||||
<td><?= $this->getHtml('Created'); ?>
|
||||
<input id="accountList-r5-asc" name="accountList-sort" type="radio"><label for="accountList-r5-asc"><i class="sort-asc fa fa-chevron-up"></i></label>
|
||||
<input id="accountList-r5-desc" name="accountList-sort" type="radio"><label for="accountList-r5-desc"><i class="sort-desc fa fa-chevron-down"></i></label>
|
||||
<tbody>
|
||||
<?php $c = 0; foreach ($accounts as $key => $value) : ++$c;
|
||||
$url = \phpOMS\Uri\UriFactory::build('{/prefix}admin/account/settings?{?}&id=' . $value->getId());
|
||||
$color = 'darkred';
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user