Blame | Last modification | View Log | RSS feed
<div class="categories form"><?php echo $this->Form->create('Category'); ?><fieldset><legend><?php echo __('Edit Category'); ?></legend><?phpecho $this->Form->input('id');echo $this->Form->input('parent_id');echo $this->Form->input('lft');echo $this->Form->input('rght');echo $this->Form->input('name');?></fieldset><?php echo $this->Form->end(__('Submit')); ?></div><div class="actions"><h3><?php echo __('Actions'); ?></h3><ul><li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('Category.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('Category.id'))); ?></li><li><?php echo $this->Html->link(__('List Categories'), array('action' => 'index')); ?></li><li><?php echo $this->Html->link(__('List Products'), array('controller' => 'products', 'action' => 'index')); ?> </li><li><?php echo $this->Html->link(__('New Product'), array('controller' => 'products', 'action' => 'add')); ?> </li></ul></div>