Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
14989 manas 1
<head>
2
<style>
3
table, th, td {
4
    border: 1px solid black;
5
}
6
</style>
7
</head>
8
<div class="searchTerms index">
9
	<h4><?php echo __('Search Terms for User ID ').($userId); ?></h4>
10
 
11
	<?php //debug($searchTerms) ?>
12
	<table class="table table-striped">
13
	<tr>
14
	<th>
15
	<?php echo h("Id");?>	
16
	</th>
17
	<th>
18
	<?php echo h("Search Term");?>	
19
	</th>
20
	<th>
21
	<?php echo h("Created");?>	
22
	</th>
23
	</tr>
24
	<?php foreach ($searchTerms as $searchTerm): ?>
25
		<tr>
26
			<td>
27
				<?php echo h($searchTerm['SearchTerm']['id']) ?>
28
			</td>
29
			<td>
30
				<?php echo h($searchTerm['SearchTerm']['search_term']) ?>
31
			</td>
32
			<td>
33
				<?php echo h($searchTerm['SearchTerm']['created']) ?>
34
			</td>
35
			<!-- <td>
36
				<?php echo h($searchTerm['SearchTerm']['id']) ?>
37
			</td>
38
			<td>
39
				<?php echo h($searchTerm['SearchTerm']['id']) ?>
40
			</td>	 -->
41
		</tr>
42
<?php endforeach;?>
43
	</table>
44
 
45
</div>
46