| 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>
|
| 15915 |
manas |
10 |
<th><?php echo $this->Paginator->sort('first_not_registered_time'); ?></th>
|
| 15751 |
manas |
11 |
<th><?php echo $this->Paginator->sort('created'); ?></th>
|
|
|
12 |
|
|
|
13 |
</tr>
|
|
|
14 |
<?php foreach ($userActivityStatuses as $userActivityStatus): ?>
|
|
|
15 |
<tr>
|
|
|
16 |
<td><?php echo h($userActivityStatus['UserActivityStatus']['user_id']); ?></td>
|
|
|
17 |
<td>
|
|
|
18 |
<?php echo h($userActivityStatus['User']['username']); ?>
|
|
|
19 |
</td>
|
|
|
20 |
<td><?php echo h($userActivityStatus['UserActivityStatus']['comment']); ?> </td>
|
|
|
21 |
<td><?php echo h($userActivityStatus['UserActivityStatus']['last_active']); ?> </td>
|
|
|
22 |
<td><?php echo h($userActivityStatus['UserActivityStatus']['last_active_diff']); ?> </td>
|
| 15915 |
manas |
23 |
<td><?php echo h($userActivityStatus['UserActivityStatus']['first_not_registered_time']); ?> </td>
|
| 15751 |
manas |
24 |
<td><?php echo h($userActivityStatus['UserActivityStatus']['created']); ?> </td>
|
|
|
25 |
|
|
|
26 |
</tr>
|
|
|
27 |
<?php endforeach; ?>
|
|
|
28 |
</table>
|
|
|
29 |
<p>
|
|
|
30 |
<?php
|
|
|
31 |
echo $this->Paginator->counter(array(
|
|
|
32 |
'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')
|
|
|
33 |
));
|
|
|
34 |
?> </p>
|
|
|
35 |
<div class="paging">
|
|
|
36 |
<?php
|
|
|
37 |
echo $this->Paginator->prev('< ' . __('previous '), array(), null, array('class' => 'prev disabled'));
|
|
|
38 |
echo $this->Paginator->numbers(array('separator' => ' '));
|
|
|
39 |
echo $this->Paginator->next(__(' next') . ' >', array(), null, array('class' => 'next disabled'));
|
|
|
40 |
?>
|
|
|
41 |
</div>
|
|
|
42 |
</div>
|