cmc-sales/php/app/views/shipments/index.ctp

42 lines
1 KiB
Plaintext
Raw Normal View History

<div class="shipments index">
2011-05-03 18:49:07 -07:00
<h2><?php echo ucfirst($type) .' Shipments'?></h2>
2011-04-28 00:47:34 -07:00
<?php echo $javascript->link('shipment_index');?>
<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>
<button class="newShipment">New Shipment</button>
2011-05-03 18:49:07 -07:00
<div class="scrollHorizontal">
2011-05-08 18:11:23 -07:00
<? //$this->element('shipment_index_'.$type);?>
<?=$this->element('shipment_index_all');?>
2011-05-03 18:49:07 -07:00
</div>
</div>
<div class="paging">
<?php echo $paginator->prev('<< '.__('previous', true), array(), null, array('class'=>'disabled'));?>
2011-05-03 18:49:07 -07:00
| <?php echo $paginator->numbers();?>
<?php echo $paginator->next(__('next', true).' >>', array(), null, array('class' => 'disabled'));?>
</div>
<div class="actions">
<ul>
<li><button class="newShipment">New Shipment</button></li>
</ul>
</div>
<div id="add-form" title="New Shipment">
</div>
<div id="edit-form" title="Edit Shipment">
</div>
<?php debug($shipments); ?>