| 15832 |
anikendra |
1 |
<div class="notificationViews view">
|
|
|
2 |
<h2><?php echo __('Notification View'); ?></h2>
|
|
|
3 |
<dl>
|
|
|
4 |
<dt><?php echo __('Id'); ?></dt>
|
|
|
5 |
<dd>
|
|
|
6 |
<?php echo h($notificationView['NotificationView']['id']); ?>
|
|
|
7 |
|
|
|
8 |
</dd>
|
|
|
9 |
<dt><?php echo __('User'); ?></dt>
|
|
|
10 |
<dd>
|
|
|
11 |
<?php echo $this->Html->link($notificationView['User']['username'], array('controller' => 'users', 'action' => 'view', $notificationView['User']['id'])); ?>
|
|
|
12 |
|
|
|
13 |
</dd>
|
|
|
14 |
<dt><?php echo __('Notification Rule'); ?></dt>
|
|
|
15 |
<dd>
|
|
|
16 |
<?php echo $this->Html->link($notificationView['NotificationRule']['name'], array('controller' => 'notification_rules', 'action' => 'view', $notificationView['NotificationRule']['id'])); ?>
|
|
|
17 |
|
|
|
18 |
</dd>
|
|
|
19 |
<dt><?php echo __('Created'); ?></dt>
|
|
|
20 |
<dd>
|
|
|
21 |
<?php echo h($notificationView['NotificationView']['created']); ?>
|
|
|
22 |
|
|
|
23 |
</dd>
|
|
|
24 |
</dl>
|
|
|
25 |
</div>
|
|
|
26 |
<div class="actions">
|
|
|
27 |
<h3><?php echo __('Actions'); ?></h3>
|
|
|
28 |
<ul>
|
|
|
29 |
<li><?php echo $this->Html->link(__('Edit Notification View'), array('action' => 'edit', $notificationView['NotificationView']['id'])); ?> </li>
|
|
|
30 |
<li><?php echo $this->Form->postLink(__('Delete Notification View'), array('action' => 'delete', $notificationView['NotificationView']['id']), null, __('Are you sure you want to delete # %s?', $notificationView['NotificationView']['id'])); ?> </li>
|
|
|
31 |
<li><?php echo $this->Html->link(__('List Notification Views'), array('action' => 'index')); ?> </li>
|
|
|
32 |
<li><?php echo $this->Html->link(__('New Notification View'), array('action' => 'add')); ?> </li>
|
|
|
33 |
<li><?php echo $this->Html->link(__('List Users'), array('controller' => 'users', 'action' => 'index')); ?> </li>
|
|
|
34 |
<li><?php echo $this->Html->link(__('New User'), array('controller' => 'users', 'action' => 'add')); ?> </li>
|
|
|
35 |
<li><?php echo $this->Html->link(__('List Notification Rules'), array('controller' => 'notification_rules', 'action' => 'index')); ?> </li>
|
|
|
36 |
<li><?php echo $this->Html->link(__('New Notification Rule'), array('controller' => 'notification_rules', 'action' => 'add')); ?> </li>
|
|
|
37 |
</ul>
|
|
|
38 |
</div>
|