Subversion Repositories SmartDukaan

Rev

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

Rev 14409 Rev 14420
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">
4
			<h3>User's browsing history</h3>
4
			<h3>Browsing history (<?php echo $userUrls[0]['User']['username'];?>)</h3>
5
			<table class="table table-striped">
5
			<table class="table table-striped">
6
				<tr>
6
				<tr>
7
					<th><?php echo $this->Paginator->sort('id'); ?></th>
-
 
8
					<th><?php echo $this->Paginator->sort('user_id'); ?></th>
-
 
9
					<th><?php echo $this->Paginator->sort('url'); ?></th>
-
 
10
					<th><?php echo $this->Paginator->sort('created'); ?></th>
7
					<th><?php echo $this->Paginator->sort('created'); ?></th>
-
 
8
					<!-- <th><?php //echo $this->Paginator->sort('user_id'); ?></th> -->
-
 
9
					<th><?php echo $this->Paginator->sort('url'); ?></th>					
11
				</tr>
10
				</tr>
12
				<?php foreach ($userUrls as $url): ?>
11
				<?php foreach ($userUrls as $url): ?>
13
				<tr>
12
				<tr>
14
					<td><?php echo h($url['UserUrl']['id']); ?>&nbsp;</td>
-
 
15
					<td>
-
 
16
						<?php echo $this->Html->link($url['User']['username'], array('controller' => 'users', 'action' => 'view', $url['User']['id'])); ?>
-
 
17
					</td>
-
 
18
					<td><?php echo h($url['UserUrl']['url']); ?>&nbsp;</td>
-
 
19
					<td><?php echo h($url['UserUrl']['created']); ?>&nbsp;</td>
13
					<td><?php echo h($url['UserUrl']['created']); ?>&nbsp;</td>
-
 
14
					<!-- <td><?php //echo h($url['UserUrl']['id']); ?>&nbsp;</td> -->
-
 
15
					<!--<td>
-
 
16
						<?php //echo $this->Html->link($url['User']['username'], array('controller' => 'users', 'action' => 'view', $url['User']['id'])); ?>
-
 
17
					</td>-->
-
 
18
					<td><?php echo h($url['UserUrl']['url']); ?>&nbsp;</td>					
20
				</tr>
19
				</tr>
21
			<?php endforeach; ?>
20
			<?php endforeach; ?>
22
			</table>
21
			</table>
23
			<p>
22
			<p>
24
				<?php
23
				<?php