Current File : /home/users/barii/public_html/finansenl.com.pl/wodki/application/views/backend/special/list.php |
<!-- ui-dialog -->
<div id="dialog" title="Confirmation Alert" style="display: none;">
<p>Do You Want Delete this item ?</p>
</div>
<!-- start table-content -->
<div id="table-content">
<?php echo Message::render(); ?>
<!-- start product-table ..................................................................................... -->
<form id="mainform" action="" method="post">
<table border="0" width="100%" cellpadding="0" cellspacing="0" id="product-table">
<tr>
<th class="table-header-check"><a id="toggle-all" ></a> </th>
<th class="table-header-repeat line-left minwidth-1"><a href="">Name</a> </th>
<th class="table-header-repeat line-left minwidth-1"><a href="">Data</a></th>
<th class="table-header-options line-left"><a href="">Options</a></th>
</tr>
<?php $n = 0; foreach( $data as $item ) : $n++; ?>
<?php echo (( $n % 2 ) == 0 ) ? '<tr>' : '<tr class="alternate-row">'; ?>
<td><input type="checkbox"/></td>
<td><?php echo $item->news_name; ?></td>
<td><?php echo $item->news_date; ?></td>
<td class="options-width">
<a href="./special/edit/<?php echo $item->id; ?>" title="Edit" class="icon-1 info-tooltip"></a>
<a href="./special/delete/<?php echo $item->id; ?>" id="dialog_link_<?php echo $item->id; ?>" title="Delete" class="icon-2 info-tooltip" ></a>
<a href="#" title="HOT" class="icon-3 info-tooltip"></a>
<a href="#" title="Accept" class="icon-5 info-tooltip"></a>
</td>
</tr>
<?php endforeach; ?>
</table>
<!-- end product-table................................... -->
</form>
</div>
<!-- end content-table -->
<!-- start actions-box ............................................... -->
<div id="actions-box">
<a href="" class="action-slider"></a>
<div id="actions-box-slider">
<a href="" class="action-edit">Edit</a>
<a href="" class="action-delete">Delete</a>
</div>
<div class="clear"></div>
</div>
<!-- end actions-box........... -->
<!-- start paging..................................................... -->
<?php if( !is_null($pagination)) echo $pagination->render(); ?>
<!-- end paging................ -->
<div class="clear"></div>