Subversion Repositories SmartDukaan

Rev

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

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