| Line 1... |
Line 1... |
| 1 |
<div class="container">
|
1 |
<div class="container">
|
| 2 |
<div class="row">
|
2 |
<div class="row">
|
| 3 |
<div class="col-lg-12">
|
3 |
<div class="col-lg-12 table-responsive">
|
| 4 |
<h3>List of registered users</h3>
|
4 |
<h3>List of registered users</h3>
|
| 5 |
<?php if(!empty($users)):?>
|
5 |
<?php if(!empty($users)):?>
|
| 6 |
<table class="table table-striped">
|
6 |
<table class="table table-striped">
|
| 7 |
<thead>
|
7 |
<thead>
|
| 8 |
<tr>
|
8 |
<tr>
|
| 9 |
<th><?php echo $this->Paginator->sort('id');?></th>
|
9 |
<th><?php echo $this->Paginator->sort('id');?></th>
|
| 10 |
<th><?php echo $this->Paginator->sort('email');?></th>
|
10 |
<th><?php echo $this->Paginator->sort('email');?></th>
|
| 11 |
<th><?php echo $this->Paginator->sort('name');?></th>
|
11 |
<th><?php echo $this->Paginator->sort('name');?></th>
|
| 12 |
<th><?php echo $this->Paginator->sort('referrer');?></th>
|
12 |
<th><?php echo $this->Paginator->sort('referrer');?></th>
|
| - |
|
13 |
<th><?php echo $this->Paginator->sort('utm_source');?></th>
|
| - |
|
14 |
<th><?php echo $this->Paginator->sort('utm_medium');?></th>
|
| - |
|
15 |
<th><?php echo $this->Paginator->sort('utm_term');?></th>
|
| - |
|
16 |
<th><?php echo $this->Paginator->sort('utm_campaign');?></th>
|
| 13 |
<th><?php echo $this->Paginator->sort('mobile_number');?></th>
|
17 |
<th><?php echo $this->Paginator->sort('mobile_number');?></th>
|
| 14 |
<th><?php echo $this->Paginator->sort('created');?></th>
|
18 |
<th><?php echo $this->Paginator->sort('created');?></th>
|
| 15 |
<th>Actions</th>
|
19 |
<th>Actions</th>
|
| 16 |
</tr>
|
20 |
</tr>
|
| 17 |
</thead>
|
21 |
</thead>
|
| Line 20... |
Line 24... |
| 20 |
<tr>
|
24 |
<tr>
|
| 21 |
<td><?php echo $user['User']['id'];?></td>
|
25 |
<td><?php echo $user['User']['id'];?></td>
|
| 22 |
<td><?php echo $user['User']['email'];?></td>
|
26 |
<td><?php echo $user['User']['email'];?></td>
|
| 23 |
<td><?php echo $user['User']['first_name'];?></td>
|
27 |
<td><?php echo $user['User']['first_name'];?></td>
|
| 24 |
<td><?php echo $user['User']['referrer'];?></td>
|
28 |
<td><?php echo $user['User']['referrer'];?></td>
|
| - |
|
29 |
<td><?php echo $user['User']['utm_source'];?></td>
|
| - |
|
30 |
<td><?php echo $user['User']['utm_medium'];?></td>
|
| - |
|
31 |
<td><?php echo $user['User']['utm_term'];?></td>
|
| - |
|
32 |
<td><?php echo $user['User']['utm_campaign'];?></td>
|
| 25 |
<td><?php echo $user['User']['mobile_number'];?></td>
|
33 |
<td><?php echo $user['User']['mobile_number'];?></td>
|
| 26 |
<td><?php echo $user['User']['created'];?></td>
|
34 |
<td><?php echo $user['User']['created'];?></td>
|
| 27 |
<td>
|
35 |
<td>
|
| 28 |
<a href="/admin/user_urls/by/<?php echo $user['User']['id'];?>">Browsing History</a> | <a href="/admin/devices/by/<?php echo $user['User']['id'];?>">Device History</a>
|
36 |
<a href="/admin/user_urls/by/<?php echo $user['User']['id'];?>">Browsing History</a> | <a href="/admin/devices/by/<?php echo $user['User']['id'];?>">Device History</a>
|
| 29 |
</td>
|
37 |
</td>
|
| 30 |
</tr>
|
38 |
</tr>
|