| 14579 |
anikendra |
1 |
<div class="notificationRules form">
|
|
|
2 |
<?php echo $this->Form->create('NotificationRule'); ?>
|
|
|
3 |
<fieldset>
|
|
|
4 |
<legend><?php echo __('Edit Notification Rule'); ?></legend>
|
|
|
5 |
<?php
|
|
|
6 |
echo $this->Form->input('id');
|
|
|
7 |
echo $this->Form->input('name');
|
|
|
8 |
echo $this->Form->input('sql');
|
|
|
9 |
echo $this->Form->input('message');
|
|
|
10 |
echo $this->Form->input('url');
|
|
|
11 |
echo $this->Form->input('status');
|
|
|
12 |
echo $this->Form->input('starttime');
|
|
|
13 |
echo $this->Form->input('endtime');
|
|
|
14 |
?>
|
|
|
15 |
</fieldset>
|
|
|
16 |
<?php echo $this->Form->end(__('Submit')); ?>
|
|
|
17 |
</div>
|
|
|
18 |
<div class="actions">
|
|
|
19 |
<h3><?php echo __('Actions'); ?></h3>
|
|
|
20 |
<ul>
|
|
|
21 |
|
|
|
22 |
<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('NotificationRule.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('NotificationRule.id'))); ?></li>
|
|
|
23 |
<li><?php echo $this->Html->link(__('List Notification Rules'), array('action' => 'index')); ?></li>
|
|
|
24 |
</ul>
|
|
|
25 |
</div>
|