24 lines
1.1 KiB
PHP
Executable file
24 lines
1.1 KiB
PHP
Executable file
<div class="currencies form">
|
|
<?php echo $form->create('Currency');?>
|
|
<fieldset>
|
|
<legend><?php __('Add Currency');?></legend>
|
|
<?php
|
|
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(__('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>
|