Subversion Repositories SmartDukaan

Rev

Rev 19752 | Rev 21010 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
19747 naman 1
 
2
<div class="container">
3
	<div class = "row">
4
		<div class="col-lg-12 table-responsive">
5
			<h2><?php echo __('Pending Retailers'); ?></h2>
6
 
7
				<table cellpadding="0" cellspacing="0" border="1" class="table table-striped" >
8
					<tr>
9
 
10
						<th style="text-align:center">Mobile No.</th>
11
						<th style="text-align:center">Tin</th>
12
						<th style="text-align:center">Address</th>
13
						<th style="text-align:center">City</th>
14
						<th style="text-align:center">State</th>
19769 naman 15
						<th style="text-align:center">Comment</th>
19747 naman 16
						<th></th>
17
					</tr>
18
 
19
					<?php foreach($pending as $pkey => $pvalue):?>
20
					<tr>
21
						<td style="text-align:center"><?php echo $pvalue['Retailer']['contact1'];?></td>
22
						<td style="text-align:center"><?php echo $pvalue['Retailer']['tinnumber'];?></td>
23
						<td style="text-align:center"><?php echo $pvalue['Retailer']['address'];?></td>
24
						<td style="text-align:center"><?php echo $pvalue['Retailer']['city'];?></td>
25
						<td style="text-align:center"><?php echo $pvalue['Retailer']['state'];?></td>
19769 naman 26
						<td style="text-align:center"><?php echo $pvalue['Retailer']['comments'];?></td>
19747 naman 27
 
28
						<td style="text-align:center">
19769 naman 29
							<?php //if(!empty($pvalue['Retailer']['tinnumber'])):?>
30
								<a href="/admin/retailers/retailerverify/<?php echo $pvalue['Retailer']['id']."/".$pvalue['Retailer']['tinnumber'];?>"><button type="button" class="btn btn-success btn-xs">Get Store Info</button></a>
31
							<?php //else:?>
32
							<!--  	<a href ="<?php //echo $base_url."admin/retailers/verifycancel/".$pvalue['Retailer']['id'];?>/verify"><button type = "button" class = "btn btn-success btn-xs">Verify</button></a>
33
								<a href ="<?php //echo $base_url."admin/retailers/verifycancel/".$pvalue['Retailer']['id'];?>/cancel"><button type = "button" class = "btn btn-danger btn-xs">Cancel</button></a>-->
34
							<?php //endif;?>
19747 naman 35
						</td>
36
					</tr>
37
 
38
					<?php endforeach;?>
39
 
40
				</table>
41
		</div>
42
	</div>
43
 
44
</div>