64 lines
2.4 KiB
PHP
64 lines
2.4 KiB
PHP
<div id="headerbar">
|
|
<h1 class="headerbar-title"><?php _trans('tax_rates'); ?></h1>
|
|
|
|
<div class="headerbar-item pull-right">
|
|
<a class="btn btn-sm btn-primary" href="<?php echo site_url('tax_rates/form'); ?>">
|
|
<i class="fa fa-plus"></i> <?php _trans('new'); ?>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="headerbar-item pull-right">
|
|
<?php echo pager(site_url('tax_rates/index'), 'mdl_tax_rates'); ?>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="content" class="table-content">
|
|
|
|
<?php echo $this->layout->load_view('layout/alerts'); ?>
|
|
|
|
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
|
<tr>
|
|
<th><?php _trans('tax_rate_name'); ?></th>
|
|
<th><?php _trans('tax_rate_percent'); ?></th>
|
|
<th><?php _trans('options'); ?></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($tax_rates as $tax_rate) { ?>
|
|
<tr>
|
|
<td><?php _htmlsc($tax_rate->tax_rate_name); ?></td>
|
|
<td><?php echo ($tax_rate->tax_rate_percent); ?>%</td>
|
|
<td>
|
|
<div class="options btn-group">
|
|
<a class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown" href="#">
|
|
<i class="fa fa-cog"></i> <?php _trans('options'); ?>
|
|
</a>
|
|
<ul class="dropdown-menu">
|
|
<li>
|
|
<a href="<?php echo site_url('tax_rates/form/' . $tax_rate->tax_rate_id); ?>">
|
|
<i class="fa fa-edit fa-margin"></i> <?php _trans('edit'); ?>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="<?php echo site_url('tax_rates/delete/' . $tax_rate->tax_rate_id); ?>"
|
|
onclick="return confirm('<?php _trans('delete_record_warning'); ?>');">
|
|
<i class="fa fa-trash-o fa-margin"></i> <?php _trans('delete'); ?>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
</tbody>
|
|
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|