31 lines
1.7 KiB
PHP
Executable file
31 lines
1.7 KiB
PHP
Executable file
<div class="freightServices view">
|
|
<h2><?php __('FreightService');?></h2>
|
|
<dl><?php $i = 0; $class = ' class="altrow"';?>
|
|
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Id'); ?></dt>
|
|
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
|
|
<?php echo $freightService['FreightService']['id']; ?>
|
|
|
|
</dd>
|
|
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Freight Forwarder'); ?></dt>
|
|
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
|
|
<?php echo $html->link($freightService['FreightForwarder']['name'], array('controller' => 'freight_forwarders', 'action' => 'view', $freightService['FreightForwarder']['id'])); ?>
|
|
|
|
</dd>
|
|
<dt<?php if ($i % 2 == 0) echo $class;?>><?php __('Name'); ?></dt>
|
|
<dd<?php if ($i++ % 2 == 0) echo $class;?>>
|
|
<?php echo $freightService['FreightService']['name']; ?>
|
|
|
|
</dd>
|
|
</dl>
|
|
</div>
|
|
<div class="actions">
|
|
<ul>
|
|
<li><?php echo $html->link(__('Edit FreightService', true), array('action' => 'edit', $freightService['FreightService']['id'])); ?> </li>
|
|
<li><?php echo $html->link(__('Delete FreightService', true), array('action' => 'delete', $freightService['FreightService']['id']), null, sprintf(__('Are you sure you want to delete # %s?', true), $freightService['FreightService']['id'])); ?> </li>
|
|
<li><?php echo $html->link(__('List FreightServices', true), array('action' => 'index')); ?> </li>
|
|
<li><?php echo $html->link(__('New FreightService', true), array('action' => 'add')); ?> </li>
|
|
<li><?php echo $html->link(__('List Freight Forwarders', true), array('controller' => 'freight_forwarders', 'action' => 'index')); ?> </li>
|
|
<li><?php echo $html->link(__('New Freight Forwarder', true), array('controller' => 'freight_forwarders', 'action' => 'add')); ?> </li>
|
|
</ul>
|
|
</div>
|