Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
19892 manas 1
<div class="container">
2
	<div class="row">
3
		<div class="col-lg-12 table-responsive">
4
			<h3>Credit Outstanding Payments</h3>
5
			<table class="table table-striped">
6
				<thead>
7
					<tr>
8
						<th><?php echo ('User Name');?></th>
9
						<th><?php echo ('Email Id');?></th>
10
						<th><?php echo ('Counter Name');?></th>
11
						<th><?php echo ('Creditor Id');?></th>
12
						<th><?php echo ('Payment Id');?></th>
13
						<th><?php echo ('Total Amount');?></th>
14
						<th><?php echo ('Created');?></th>
15
					</tr>
16
				</thead>
17
				<tbody>
18
					<?php foreach($outstandingPayments AS $loanH):?>
19
						<tr>
20
							<td><?php echo $usersName[$loanH['user_id']];?></td>
21
							<td><?php echo $usersMap[$loanH['user_id']]; ?></td>
22
							<td><?php echo $loanH['counter_name'];?></td>
23
							<td><?php echo $loanH['creditor_id'];?></td>
24
							<td><?php echo $loanH['payment_id'];?></td>
25
							<td><?php echo $loanH['totalAmount'];?></td>
26
							<td><?php echo date('Y-m-d H:i:s', $loanH['created']/1000);?></td>
27
						</tr>
28
					<?php endforeach;?>
29
				</tbody>
30
			</table>
31
		</div>
32
	</div>
33
</div>