Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15503 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 Results for ').($search_term) ; ?></h4>
10
	<table class="table table-striped">
11
	<tr><th><?php echo h("Id");?></th>
12
	<th><?php echo h("Search Term");?></th>
13
	<th><?php echo h("Created");?>	</th>
14
	</tr>
15
	<?php foreach ($searchTerms as $searchTerm): ?>
16
		<tr>
17
			<td><?php echo h($searchTerm['SearchTerm']['id']) ?></td>
18
			<td><?php echo h($searchTerm['SearchTerm']['search_term']) ?></td>
19
			<td><?php echo h($searchTerm['SearchTerm']['created']) ?></td>
20
		</tr>
21
<?php endforeach;?>
22
	</table>
23
 
24
</div>
25