cmc-sales/php/app/views/currencies/edit.ctp

26 lines
1.4 KiB
PHP
Executable file

<div class="currencies form">
<?php echo $form->create('Currency');?>
<fieldset>
<legend><?php __('Edit Currency');?></legend>
<?php
echo $form->input('id');
echo $form->input('name');
echo $form->input('symbol');
echo $form->input('iso4217');
?>
</fieldset>
<?php echo $form->end('Submit');?>
</div>
<div class="actions">
<ul>
<li><?php echo $html->link(__('Delete', true), array('action'=>'delete', $form->value('Currency.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('Currency.id'))); ?></li>
<li><?php echo $html->link(__('List Currencies', true), array('action'=>'index'));?></li>
<li><?php echo $html->link(__('List Countries', true), array('controller'=> 'countries', 'action'=>'index')); ?> </li>
<li><?php echo $html->link(__('New Country', true), array('controller'=> 'countries', 'action'=>'add')); ?> </li>
<li><?php echo $html->link(__('List Principles', true), array('controller'=> 'principles', 'action'=>'index')); ?> </li>
<li><?php echo $html->link(__('New Principle', true), array('controller'=> 'principles', 'action'=>'add')); ?> </li>
<li><?php echo $html->link(__('List Quoted Products', true), array('controller'=> 'quoted_products', 'action'=>'index')); ?> </li>
<li><?php echo $html->link(__('New Quoted Product', true), array('controller'=> 'quoted_products', 'action'=>'add')); ?> </li>
</ul>
</div>