Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15832 anikendra 1
<div class="notificationViews form">
2
<?php echo $this->Form->create('NotificationView'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Add Notification View'); ?></legend>
5
	<?php
6
		echo $this->Form->input('user_id');
7
		echo $this->Form->input('notification_rule_id');
8
	?>
9
	</fieldset>
10
<?php echo $this->Form->end(__('Submit')); ?>
11
</div>
12
<div class="actions">
13
	<h3><?php echo __('Actions'); ?></h3>
14
	<ul>
15
 
16
		<li><?php echo $this->Html->link(__('List Notification Views'), array('action' => 'index')); ?></li>
17
		<li><?php echo $this->Html->link(__('List Users'), array('controller' => 'users', 'action' => 'index')); ?> </li>
18
		<li><?php echo $this->Html->link(__('New User'), array('controller' => 'users', 'action' => 'add')); ?> </li>
19
		<li><?php echo $this->Html->link(__('List Notification Rules'), array('controller' => 'notification_rules', 'action' => 'index')); ?> </li>
20
		<li><?php echo $this->Html->link(__('New Notification Rule'), array('controller' => 'notification_rules', 'action' => 'add')); ?> </li>
21
	</ul>
22
</div>