| 14510 |
anikendra |
1 |
<div class="exceptionalnlcs form">
|
|
|
2 |
<?php echo $this->Form->create('Exceptionalnlc'); ?>
|
|
|
3 |
<fieldset>
|
|
|
4 |
<legend><?php echo __('Admin Edit Exceptionalnlc'); ?></legend>
|
|
|
5 |
<?php
|
|
|
6 |
echo $this->Form->input('sku');
|
|
|
7 |
echo $this->Form->input('max_nlc');
|
|
|
8 |
echo $this->Form->input('min_nlc');
|
|
|
9 |
?>
|
|
|
10 |
</fieldset>
|
|
|
11 |
<?php echo $this->Form->end(__('Submit')); ?>
|
|
|
12 |
</div>
|
|
|
13 |
<div class="actions">
|
|
|
14 |
<h3><?php echo __('Actions'); ?></h3>
|
|
|
15 |
<ul>
|
|
|
16 |
|
|
|
17 |
<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('Exceptionalnlc.sku')), null, __('Are you sure you want to delete # %s?', $this->Form->value('Exceptionalnlc.sku'))); ?></li>
|
|
|
18 |
<li><?php echo $this->Html->link(__('List Exceptionalnlcs'), array('action' => 'index')); ?></li>
|
|
|
19 |
</ul>
|
|
|
20 |
</div>
|