Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
14579 anikendra 1
<div class="notificationRules form">
2
<?php echo $this->Form->create('NotificationRule'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Add Notification Rule'); ?></legend>
5
	<?php
6
		echo $this->Form->input('name');
7
		echo $this->Form->input('sql');
8
		echo $this->Form->input('message');
9
		echo $this->Form->input('url');
10
		echo $this->Form->input('status');
11
		echo $this->Form->input('starttime');
12
		echo $this->Form->input('endtime');
13
	?>
14
	</fieldset>
15
<?php echo $this->Form->end(__('Submit')); ?>
16
</div>
17
<div class="actions">
18
	<h3><?php echo __('Actions'); ?></h3>
19
	<ul>
20
 
21
		<li><?php echo $this->Html->link(__('List Notification Rules'), array('action' => 'index')); ?></li>
22
	</ul>
23
</div>