Subversion Repositories SmartDukaan

Rev

Rev 21978 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<html>
<head>
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/bootstrap-theme.min.css" />
<script src="js/bootstrap.min.js" type="script/javascript"></script>
<script src="js/fileindextable.js"></script>
<!--<style>
.table-responsive {height:180px;}
</style>-->
</head>
<body>

<div class="container">
    <div class="row">
      <div class="table-responsive">
        <table class="table table-hover">
          <thead>

  <tr>
    <th>RegisteredBusinessName</th>
    <th>RegisteredEmail</th> 
    <th>Mobile</th>
    <th>Address</th> 
    <th>City</th>
    <th>State</th> 
    <th>Status</th>
    <th>Link</th>
    <th>Details</th>
   
  </tr>
   </thead>
 <tbody id="myTable">
  
  <tr>
  #foreach ($fofoForm in $action.getLatestFofo())
    <td> $fofoForm.getRegisteredBusinessName()</td>
    <td>$fofoForm.getRegisteredEmail1()</td>
    <td>$fofoForm.getMobile()</td>
    <td>$fofoForm.getLine1() $fofoForm.getLine2() $fofoForm.getLine3()</td>
    <td>$fofoForm.getCity()</td>
    <td>$fofoForm.getState()</td>
    <td>Pending</td>
    <td><a target="_blank" href="$action.getContextPath()/fofo/$fofoForm.get_id()/edit">View Details</a></td>
    <td><a target="_blank" href="$action.getContextPath()/file-display/$fofoForm.get_id()">View Docs</a></td>
  </tr>
  
#end
      </tbody>
        </table>   
      </div>
      <div class="col-md-12 text-center">
      <ul class="pagination pagination-lg pager" id="myPager"></ul>
      </div>
        </div>
</div>

</body>
</html>