Subversion Repositories SmartDukaan

Rev

Rev 19745 | Rev 19770 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div class="container">
        <div class = "row">
                <div class="col-lg-6">
                        <div class = "row">
                                <div class="col-lg-12 table-responsive">
                                        
                                        <h2><?php echo __('Retailer Detail'); ?></h2>
        
                                        <table cellpadding="0" cellspacing="0" border="1" class="table table-striped" >
                                                <tr>                                                    
                                                        <th style="text-align:center">Mobile No.</th>
                                                        <td><?php echo $result['contact1'];?></td>
                                                </tr>
                                                <tr>
                                                        <th style="text-align:center">Tin</th>
                                                        <td><?php echo $result['tinnumber'];?></td>
                                                </tr>
                                                <tr>
                                                        <th style="text-align:center">Address</th>
                                                        <td><?php echo $result['address'];?></td>
                                                </tr>
                                                <tr>
                                                        <th style="text-align:center">City</th>
                                                        <td><?php echo $result['city'];?></td>
                                                </tr>
                                                <tr>
                                                        <th style="text-align:center">State</th>
                                                        <td><?php echo $result['state'];?></td>
                                                </tr>
                                        </table>
                                        
                                </div>
                                
                        </div>
                </div>
                
                <?php if(!empty($tinresult)):?>
                <div class="col-lg-6">
                        <div class = "row">
                                <div class="col-lg-12 table-responsive">
                                        
                                        <h2><?php echo __('Tin Detail'); ?></h2>
        
                                        <table cellpadding="0" cellspacing="0" border="1" class="table table-striped" >
                                                <tr>                                                    
                                                        <th style="text-align:center">Counter Name</th>
                                                        <td><?php echo $tinresult['counter_name'];?></td>
                                                </tr>
                                                <tr>
                                                        <th style="text-align:center">Counter Address</th>
                                                        <td><?php echo $tinresult['counter_address'];?></td>
                                                </tr>
                                                <tr>
                                                        <th style="text-align:center">State     </th>
                                                        <td><?php echo $tinresult['state'];?></td>
                                                </tr>
                                                <tr>
                                                        <th style="text-align:center">PAN</th>
                                                        <td><?php echo $tinresult['pan'];?></td>
                                                </tr>
                                                <tr>
                                                        <th style="text-align:center">Date of Registration</th>
                                                        <td><?php echo $tinresult['registered_on'];?></td>
                                                </tr>
                                        </table>
                                        
                                </div>
                                
                        </div>
                </div>
                <?php endif;?>
                
        </div>
        <center>
                <a href ="<?php echo $base_url."admin/retailers/verifycancel/".$result['id'];?>/verify"><button type = "button" class = "btn btn-success">Verify</button></a>
                <a href ="<?php echo $base_url."admin/retailers/verifycancel/".$result['id'];?>/cancel"><button type = "button" class = "btn btn-danger">Cancel</button></a>
        </center>
</div>