Subversion Repositories SmartDukaan

Rev

Rev 21920 | Rev 21978 | Go to most recent revision | Details | Compare with Previous | 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>
21977 amit.gupta 29
    <th>Details</th>
21920 rajender 30
 
31
  </tr>
32
   </thead>
33
 <tbody id="myTable">
34
 
35
  <tr>
36
  #foreach ($fofoForm in $action.getLatestFofo())
37
    <td> $fofoForm.getRegisteredBusinessName()</td>
38
    <td>$fofoForm.getRegisteredEmail1()</td>
39
    <td>$fofoForm.getMobile()</td>
40
    <td>$fofoForm.getLine1() $fofoForm.getLine2() $fofoForm.getLine3()</td>
41
    <td>$fofoForm.getCity()</td>
42
    <td>$fofoForm.getState()</td>
43
    <td>Pending</td>
21977 amit.gupta 44
    <td><a href="$action.getContextPath()/fofo/$fofoForm.get_id()/edit">View Details</a></td>
45
    <td><a href="$action.getContextPath()/file-display/$fofoForm.get_id()">View Docs</a></td>
21920 rajender 46
  </tr>
47
 
48
#end
49
      </tbody>
50
        </table>   
51
      </div>
52
      <div class="col-md-12 text-center">
53
      <ul class="pagination pagination-lg pager" id="myPager"></ul>
54
      </div>
55
	</div>
56
</div>
57
 
58
</body>
59
</html>