Blame | Last modification | View Log | RSS feed
<div class="feedbacks form"><?php echo $this->Form->create('Feedback'); ?><fieldset><legend><?php echo __('Admin Add Feedback'); ?></legend><?phpecho $this->Form->input('user_id');echo $this->Form->input('email');echo $this->Form->input('subject');echo $this->Form->input('message');?></fieldset><?php echo $this->Form->end(__('Submit')); ?></div><div class="actions"><h3><?php echo __('Actions'); ?></h3><ul><li><?php echo $this->Html->link(__('List Feedbacks'), array('action' => 'index')); ?></li><li><?php echo $this->Html->link(__('List Users'), array('controller' => 'users', 'action' => 'index')); ?> </li><li><?php echo $this->Html->link(__('New User'), array('controller' => 'users', 'action' => 'add')); ?> </li></ul></div>