Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15403 manish.sha 1
<div class="feedbacks form">
2
<?php echo $this->Form->create('Feedback'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Admin Add Feedback'); ?></legend>
5
	<?php
6
		echo $this->Form->input('user_id');
7
		echo $this->Form->input('email');
8
		echo $this->Form->input('subject');
9
		echo $this->Form->input('message');
10
	?>
11
	</fieldset>
12
<?php echo $this->Form->end(__('Submit')); ?>
13
</div>
14
<div class="actions">
15
	<h3><?php echo __('Actions'); ?></h3>
16
	<ul>
17
 
18
		<li><?php echo $this->Html->link(__('List Feedbacks'), array('action' => 'index')); ?></li>
19
		<li><?php echo $this->Html->link(__('List Users'), array('controller' => 'users', 'action' => 'index')); ?> </li>
20
		<li><?php echo $this->Html->link(__('New User'), array('controller' => 'users', 'action' => 'add')); ?> </li>
21
	</ul>
22
</div>