Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="notificationViews view">
<h2><?php echo __('Notification View'); ?></h2>
        <dl>
                <dt><?php echo __('Id'); ?></dt>
                <dd>
                        <?php echo h($notificationView['NotificationView']['id']); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('User'); ?></dt>
                <dd>
                        <?php echo $this->Html->link($notificationView['User']['username'], array('controller' => 'users', 'action' => 'view', $notificationView['User']['id'])); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Notification Rule'); ?></dt>
                <dd>
                        <?php echo $this->Html->link($notificationView['NotificationRule']['name'], array('controller' => 'notification_rules', 'action' => 'view', $notificationView['NotificationRule']['id'])); ?>
                        &nbsp;
                </dd>
                <dt><?php echo __('Created'); ?></dt>
                <dd>
                        <?php echo h($notificationView['NotificationView']['created']); ?>
                        &nbsp;
                </dd>
        </dl>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>
                <li><?php echo $this->Html->link(__('Edit Notification View'), array('action' => 'edit', $notificationView['NotificationView']['id'])); ?> </li>
                <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>
                <li><?php echo $this->Html->link(__('List Notification Views'), array('action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Notification View'), array('action' => 'add')); ?> </li>
                <li><?php echo $this->Html->link(__('List Users'), array('controller' => 'users', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New User'), array('controller' => 'users', 'action' => 'add')); ?> </li>
                <li><?php echo $this->Html->link(__('List Notification Rules'), array('controller' => 'notification_rules', 'action' => 'index')); ?> </li>
                <li><?php echo $this->Html->link(__('New Notification Rule'), array('controller' => 'notification_rules', 'action' => 'add')); ?> </li>
        </ul>
</div>