Subversion Repositories SmartDukaan

Rev

Rev 14849 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
14579 anikendra 1
<div class="container">
2
	<div class="row">
3
		<div class="col-lg-3">
4
			<?php echo $this->Element('adminactions');?>
5
		</div>
6
		<div class="col-lg-9">
7
			<?php echo $this->Form->create('NotificationRule'); ?>
8
				<fieldset>
9
					<legend><?php echo __('Admin Add Notification Rule'); ?></legend>
10
				<?php
11
					echo $this->Form->input('name');
12
					echo $this->Form->input('sql');
13
					echo $this->Form->input('message');
14
					echo $this->Form->input('url');		
15
					// echo $this->Form->input('status');
16
					echo $this->Form->input('starttime');
17
					echo $this->Form->input('endtime');
18
				?>
19
				</fieldset>
20
			<?php echo $this->Form->end(__('Submit')); ?>
21
		</div>
22
	</div>
23
</div>