Subversion Repositories SmartDukaan

Rev

Rev 21977 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21920 rajender 1
<html>
2
<head>
3
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
4
<link rel="stylesheet" href="css/bootstrap.min.css"/>
5
<link rel="stylesheet" href="css/bootstrap-theme.min.css" />
6
<script src="js/bootstrap.min.js" type="script/javascript"></script>
7
<script src="js/fileindextable.js"></script>
8
<style>
9
.table-responsive {height:180px;}
10
</style>
11
</head>
12
<body>
13
 
14
<div class="container">
15
    <div class="row">
16
      <div class="table-responsive">
17
        <table class="table table-hover">
18
          <thead>
19
 
20
  <tr>
21
    <th>RegisteredBusinessName</th>
22
    <th>RegisteredEmail</th> 
23
    <th>Mobile</th>
24
    <th>Address</th> 
25
    <th>City</th>
26
    <th>State</th> 
27
    <th>Status</th>
28
    <th>Link</th>
29
 
30
  </tr>
31
   </thead>
32
 <tbody id="myTable">
33
 
34
  <tr>
35
  #foreach ($fofoForm in $action.getLatestFofo())
36
    <td> $fofoForm.getRegisteredBusinessName()</td>
37
    <td>$fofoForm.getRegisteredEmail1()</td>
38
    <td>$fofoForm.getMobile()</td>
39
    <td>$fofoForm.getLine1() $fofoForm.getLine2() $fofoForm.getLine3()</td>
40
    <td>$fofoForm.getCity()</td>
41
    <td>$fofoForm.getState()</td>
42
    <td>Pending</td>
43
    <td><a href="$action.getContextPath()/fofo/$fofoForm.get_id()/edit">detail</a></td>
44
  </tr>
45
 
46
#end
47
      </tbody>
48
        </table>   
49
      </div>
50
      <div class="col-md-12 text-center">
51
      <ul class="pagination pagination-lg pager" id="myPager"></ul>
52
      </div>
53
	</div>
54
</div>
55
 
56
</body>
57
</html>