Subversion Repositories SmartDukaan

Rev

Rev 14990 | Rev 17214 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 14990 Rev 15508
Line 12... Line 12...
12
	<tr>
12
	<tr>
13
		<th align="center"><?php echo h('ID'); ?></th>
13
		<th align="center"><?php echo h('ID'); ?></th>
14
		<th align="center"><?php echo h('User Id'); ?></th>
14
		<th align="center"><?php echo h('User Id'); ?></th>
15
		<th align="center"><?php echo h('Created'); ?></th>
15
		<th align="center"><?php echo h('Created'); ?></th>
16
		<th align="center"><?php echo h('Response Time'); ?></th>
16
		<th align="center"><?php echo h('Response Time'); ?></th>
17
		<th align="center"><?php echo h('Status'); ?></th>
17
		<th align="center"><?php echo h('Response'); ?></th>
18
 
18
 
19
	</tr>
19
	</tr>
20
	<?php foreach ($data as $notificationCampaign): ?>
20
	<?php foreach ($data as $notificationCampaign): ?>
21
	<tr>
21
	<tr>
22
	<td align="center" width="4%"><?php echo h($notificationCampaign['pushnotifications']['id']); ?>&nbsp;</td>
22
	<td align="center" width="4%"><?php echo h($notificationCampaign['pushnotifications']['id']); ?>&nbsp;</td>
23
	<td align="center"><?php echo h($notificationCampaign['pushnotifications']['user_id']); ?>&nbsp;</td>
23
	<td align="center"><?php echo h($notificationCampaign['pushnotifications']['user_id']); ?>&nbsp;</td>
24
	<td align="center"><?php echo h($notificationCampaign['pushnotifications']['created']); ?>&nbsp;</td>
24
	<td align="center"><?php echo h($notificationCampaign['pushnotifications']['created']); ?>&nbsp;</td>
25
	<td align="center"><?php echo h($notificationCampaign['pushnotifications']['response_time']); ?>&nbsp;</td>
25
	<td align="center"><?php echo h($notificationCampaign['pushnotifications']['response_time']); ?>&nbsp;</td>
26
	<td align="center"><?php echo h($notificationCampaign['pushnotifications']['status']); ?>&nbsp;</td>
26
	<td align="center"><?php echo h($notificationCampaign['pushnotifications']['message']); ?>&nbsp;</td>
27
	</tr>
27
	</tr>
28
	<?php endforeach; ?>
28
	<?php endforeach; ?>
29
	</table>
29
	</table>
30
	</div>
30
	</div>
31
31