57 lines
2.3 KiB
Plaintext
57 lines
2.3 KiB
Plaintext
|
|
<div class="industries index">
|
||
|
|
<h2><?php __('Industries');?></h2>
|
||
|
|
<p>
|
||
|
|
<?php
|
||
|
|
echo $paginator->counter(array(
|
||
|
|
'format' => __('Page %page% of %pages%, showing %current% records out of %count% total, starting on record %start%, ending on %end%', true)
|
||
|
|
));
|
||
|
|
?></p>
|
||
|
|
<table cellpadding="0" cellspacing="0">
|
||
|
|
<tr>
|
||
|
|
<th><?php echo $paginator->sort('id');?></th>
|
||
|
|
<th><?php echo $paginator->sort('name');?></th>
|
||
|
|
<th><?php echo $paginator->sort('parent_id');?></th>
|
||
|
|
<th class="actions"><?php __('Actions');?></th>
|
||
|
|
</tr>
|
||
|
|
<?php
|
||
|
|
$i = 0;
|
||
|
|
foreach ($industries as $industry):
|
||
|
|
$class = null;
|
||
|
|
if ($i++ % 2 == 0) {
|
||
|
|
$class = ' class="altrow"';
|
||
|
|
}
|
||
|
|
?>
|
||
|
|
<tr<?php echo $class;?>>
|
||
|
|
<td>
|
||
|
|
<?php echo $industry['Industry']['id']; ?>
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
<?php echo $industry['Industry']['name']; ?>
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
<?php echo $html->link($industry['ParentIndustry']['name'], array('controller'=> 'industries', 'action'=>'view', $industry['ParentIndustry']['id'])); ?>
|
||
|
|
</td>
|
||
|
|
<td class="actions">
|
||
|
|
<?php echo $html->link(__('View', true), array('action'=>'view', $industry['Industry']['id'])); ?>
|
||
|
|
<?php echo $html->link(__('Edit', true), array('action'=>'edit', $industry['Industry']['id'])); ?>
|
||
|
|
<?php echo $html->link(__('Delete', true), array('action'=>'delete', $industry['Industry']['id']), null, sprintf(__('Are you sure you want to delete # %s?', true), $industry['Industry']['id'])); ?>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<?php endforeach; ?>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
<div class="paging">
|
||
|
|
<?php echo $paginator->prev('<< '.__('previous', true), array(), null, array('class'=>'disabled'));?>
|
||
|
|
| <?php echo $paginator->numbers();?>
|
||
|
|
<?php echo $paginator->next(__('next', true).' >>', array(), null, array('class'=>'disabled'));?>
|
||
|
|
</div>
|
||
|
|
<div class="actions">
|
||
|
|
<ul>
|
||
|
|
<li><?php echo $html->link(__('New Industry', true), array('action'=>'add')); ?></li>
|
||
|
|
<li><?php echo $html->link(__('List Industries', true), array('controller'=> 'industries', 'action'=>'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New Parent Industry', true), array('controller'=> 'industries', 'action'=>'add')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('List Customers', true), array('controller'=> 'customers', 'action'=>'index')); ?> </li>
|
||
|
|
<li><?php echo $html->link(__('New Customer', true), array('controller'=> 'customers', 'action'=>'add')); ?> </li>
|
||
|
|
</ul>
|
||
|
|
</div>
|