Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15751 manas 1
<div class="userActivityStatuses index">
2
	<h2><?php echo __('User Activity Statuses'); ?></h2>
3
	<table cellpadding="0" cellspacing="0" class="display table table-striped">
4
	<tr>
5
			<th><?php echo $this->Paginator->sort('user_id'); ?></th>
6
			<th><?php echo h('Email'); ?></th>
7
			<th><?php echo $this->Paginator->sort('comment'); ?></th>
8
			<th><?php echo $this->Paginator->sort('last_active'); ?></th>
9
			<th><?php echo $this->Paginator->sort('last_active_diff'); ?></th>
10
			<th><?php echo $this->Paginator->sort('created'); ?></th>
11
 
12
	</tr>
13
	<?php foreach ($userActivityStatuses as $userActivityStatus): ?>
14
	<tr>
15
		<td><?php echo h($userActivityStatus['UserActivityStatus']['user_id']); ?></td>
16
		<td>
17
			<?php echo h($userActivityStatus['User']['username']); ?>
18
		</td>
19
		<td><?php echo h($userActivityStatus['UserActivityStatus']['comment']); ?>&nbsp;</td>
20
		<td><?php echo h($userActivityStatus['UserActivityStatus']['last_active']); ?>&nbsp;</td>
21
		<td><?php echo h($userActivityStatus['UserActivityStatus']['last_active_diff']); ?>&nbsp;</td>
22
		<td><?php echo h($userActivityStatus['UserActivityStatus']['created']); ?>&nbsp;</td>
23
 
24
	</tr>
25
<?php endforeach; ?>
26
	</table>
27
	<p>
28
	<?php
29
	echo $this->Paginator->counter(array(
30
	'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')
31
	));
32
	?>	</p>
33
	<div class="paging">
34
	<?php
35
		echo $this->Paginator->prev('< ' . __('previous '), array(), null, array('class' => 'prev disabled'));
36
		echo $this->Paginator->numbers(array('separator' => ' '));
37
		echo $this->Paginator->next(__(' next') . ' >', array(), null, array('class' => 'next disabled'));
38
	?>
39
	</div>
40
</div>