cmc-sales/views/boxes/index.ctp
2012-06-17 16:35:54 +10:00

67 lines
2.2 KiB
PHP
Executable file

<div class="boxes index">
<h2><?php __('Boxes');?></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('shipment_id');?></th>
<th><?php echo $paginator->sort('length');?></th>
<th><?php echo $paginator->sort('width');?></th>
<th><?php echo $paginator->sort('height');?></th>
<th><?php echo $paginator->sort('weight');?></th>
<th class="actions"><?php __('Actions');?></th>
</tr>
<?php
$i = 0;
foreach ($boxes as $box):
$class = null;
if ($i++ % 2 == 0) {
$class = ' class="altrow"';
}
?>
<tr<?php echo $class;?>>
<td>
<?php echo $box['Box']['id']; ?>
</td>
<td>
<?php echo $html->link($box['Shipment']['id'], array('controller' => 'shipments', 'action' => 'view', $box['Shipment']['id'])); ?>
</td>
<td>
<?php echo $box['Box']['length']; ?>
</td>
<td>
<?php echo $box['Box']['width']; ?>
</td>
<td>
<?php echo $box['Box']['height']; ?>
</td>
<td>
<?php echo $box['Box']['weight']; ?>
</td>
<td class="actions">
<?php echo $html->link(__('View', true), array('action' => 'view', $box['Box']['id'])); ?>
<?php echo $html->link(__('Edit', true), array('action' => 'edit', $box['Box']['id'])); ?>
<?php echo $html->link(__('Delete', true), array('action' => 'delete', $box['Box']['id']), null, sprintf(__('Are you sure you want to delete # %s?', true), $box['Box']['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 Box', true), array('action' => 'add')); ?></li>
<li><?php echo $html->link(__('List Shipments', true), array('controller' => 'shipments', 'action' => 'index')); ?> </li>
<li><?php echo $html->link(__('New Shipment', true), array('controller' => 'shipments', 'action' => 'add')); ?> </li>
</ul>
</div>