| Line 5... |
Line 5... |
| 5 |
<th><?php echo $this->Paginator->sort('user_id'); ?></th>
|
5 |
<th><?php echo $this->Paginator->sort('user_id'); ?></th>
|
| 6 |
<th><?php echo h('Email'); ?></th>
|
6 |
<th><?php echo h('Email'); ?></th>
|
| 7 |
<th><?php echo $this->Paginator->sort('comment'); ?></th>
|
7 |
<th><?php echo $this->Paginator->sort('comment'); ?></th>
|
| 8 |
<th><?php echo $this->Paginator->sort('last_active'); ?></th>
|
8 |
<th><?php echo $this->Paginator->sort('last_active'); ?></th>
|
| 9 |
<th><?php echo $this->Paginator->sort('last_active_diff'); ?></th>
|
9 |
<th><?php echo $this->Paginator->sort('last_active_diff'); ?></th>
|
| - |
|
10 |
<th><?php echo $this->Paginator->sort('first_not_registered_time'); ?></th>
|
| 10 |
<th><?php echo $this->Paginator->sort('created'); ?></th>
|
11 |
<th><?php echo $this->Paginator->sort('created'); ?></th>
|
| 11 |
|
12 |
|
| 12 |
</tr>
|
13 |
</tr>
|
| 13 |
<?php foreach ($userActivityStatuses as $userActivityStatus): ?>
|
14 |
<?php foreach ($userActivityStatuses as $userActivityStatus): ?>
|
| 14 |
<tr>
|
15 |
<tr>
|
| Line 17... |
Line 18... |
| 17 |
<?php echo h($userActivityStatus['User']['username']); ?>
|
18 |
<?php echo h($userActivityStatus['User']['username']); ?>
|
| 18 |
</td>
|
19 |
</td>
|
| 19 |
<td><?php echo h($userActivityStatus['UserActivityStatus']['comment']); ?> </td>
|
20 |
<td><?php echo h($userActivityStatus['UserActivityStatus']['comment']); ?> </td>
|
| 20 |
<td><?php echo h($userActivityStatus['UserActivityStatus']['last_active']); ?> </td>
|
21 |
<td><?php echo h($userActivityStatus['UserActivityStatus']['last_active']); ?> </td>
|
| 21 |
<td><?php echo h($userActivityStatus['UserActivityStatus']['last_active_diff']); ?> </td>
|
22 |
<td><?php echo h($userActivityStatus['UserActivityStatus']['last_active_diff']); ?> </td>
|
| - |
|
23 |
<td><?php echo h($userActivityStatus['UserActivityStatus']['first_not_registered_time']); ?> </td>
|
| 22 |
<td><?php echo h($userActivityStatus['UserActivityStatus']['created']); ?> </td>
|
24 |
<td><?php echo h($userActivityStatus['UserActivityStatus']['created']); ?> </td>
|
| 23 |
|
25 |
|
| 24 |
</tr>
|
26 |
</tr>
|
| 25 |
<?php endforeach; ?>
|
27 |
<?php endforeach; ?>
|
| 26 |
</table>
|
28 |
</table>
|