Subversion Repositories SmartDukaan

Rev

Rev 20118 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
17976 manas 1
<div class="callhistories index">
2
<h3><?php if(sizeof($result)==0) {echo h("No result");} else{?></h3>
3
<table cellpadding="0" cellspacing="0" class="table table-striped" >
4
	<tr>
5
			<th><?php echo h('Role'); ?></th>
6
			<th><?php echo h('Agent Id'); ?></th>
7
			<th><?php echo h('Count'); ?></th>
8
	</tr>	
9
	<?php foreach ($result as $backup): ?>
10
	<tr>
11
		<td><?php echo h($backup['retailers']['status']); ?>&nbsp;</td>
12
		<td><?php echo h($backup[0]['agent_id']); ?>&nbsp;</td>
13
		<td><?php echo h($backup[0]['count']); ?>&nbsp;</td> 
14
	</tr>
15
<?php endforeach; ?>
16
	</table>
17
<?php }?>	
18
</div>