Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
14776 anikendra 1
<div class="pushnotifications view">
2
<h2><?php echo __('Pushnotification'); ?></h2>
3
	<dl>
4
		<dt><?php echo __('Id'); ?></dt>
5
		<dd>
6
			<?php echo h($pushnotification['Pushnotification']['id']); ?>
7
			&nbsp;
8
		</dd>
9
		<dt><?php echo __('User'); ?></dt>
10
		<dd>
11
			<?php echo $this->Html->link($pushnotification['User']['username'], array('controller' => 'users', 'action' => 'view', $pushnotification['User']['id'])); ?>
12
			&nbsp;
13
		</dd>
14
		<dt><?php echo __('Notification Campaign Id'); ?></dt>
15
		<dd>
16
			<?php echo h($pushnotification['Pushnotification']['notification_campaign_id']); ?>
17
			&nbsp;
18
		</dd>
19
		<dt><?php echo __('Type'); ?></dt>
20
		<dd>
21
			<?php echo h($pushnotification['Pushnotification']['type']); ?>
22
			&nbsp;
23
		</dd>
24
		<dt><?php echo __('Status'); ?></dt>
25
		<dd>
26
			<?php echo h($pushnotification['Pushnotification']['status']); ?>
27
			&nbsp;
28
		</dd>
29
		<dt><?php echo __('Created'); ?></dt>
30
		<dd>
31
			<?php echo h($pushnotification['Pushnotification']['created']); ?>
32
			&nbsp;
33
		</dd>
34
	</dl>
35
</div>
36
<div class="actions">
37
	<h3><?php echo __('Actions'); ?></h3>
38
	<ul>
39
		<li><?php echo $this->Html->link(__('Edit Pushnotification'), array('action' => 'edit', $pushnotification['Pushnotification']['id'])); ?> </li>
40
		<li><?php echo $this->Form->postLink(__('Delete Pushnotification'), array('action' => 'delete', $pushnotification['Pushnotification']['id']), null, __('Are you sure you want to delete # %s?', $pushnotification['Pushnotification']['id'])); ?> </li>
41
		<li><?php echo $this->Html->link(__('List Pushnotifications'), array('action' => 'index')); ?> </li>
42
		<li><?php echo $this->Html->link(__('New Pushnotification'), array('action' => 'add')); ?> </li>
43
		<li><?php echo $this->Html->link(__('List Users'), array('controller' => 'users', 'action' => 'index')); ?> </li>
44
		<li><?php echo $this->Html->link(__('New User'), array('controller' => 'users', 'action' => 'add')); ?> </li>
45
	</ul>
46
</div>