Subversion Repositories SmartDukaan

Rev

Rev 20118 | Details | Compare with Previous | 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>
20119 naman 5
			<th><?php echo h('Agent Id'); ?></th>
6
			<th><?php echo h('Agent Name'); ?></th>
17976 manas 7
			<th><?php echo h('Role'); ?></th>
8
			<th><?php echo h('Count'); ?></th>
9
	</tr>	
10
	<?php foreach ($result as $backup): ?>
11
	<tr>
20119 naman 12
		<td><?php echo h($backup[0]['agent_id']); ?>&nbsp;</td>
13
		<td><?php echo h($backup[0]['agent_name']); ?>&nbsp;</td>
20118 naman 14
		<td><?php echo h($backup['r']['status']); ?>&nbsp;</td>
17976 manas 15
		<td><?php echo h($backup[0]['count']); ?>&nbsp;</td> 
16
	</tr>
17
<?php endforeach; ?>
18
	</table>
19
<?php }?>	
20
</div>