Subversion Repositories SmartDukaan

Rev

Rev 22190 | 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>
22196 amit.gupta 23
    <th>Detail</th> 
24
    <th>Docs</th>
22114 ashik.ali 25
 
26
  </tr>
27
   </thead>
28
 <tbody id="myTable">
29
 
30
  <tr>
22190 amit.gupta 31
  #foreach ($fofoForm in $fofoForms)
22114 ashik.ali 32
    <td> $fofoForm.getRegisteredBusinessName()</td>
33
    <td>$fofoForm.getRegisteredEmail1()</td>
34
    <td>$fofoForm.getMobile()</td>
35
    <td>$fofoForm.getLine1() $fofoForm.getLine2() $fofoForm.getLine3()</td>
36
    <td>$fofoForm.getCity()</td>
37
    <td>$fofoForm.getState()</td>
22196 amit.gupta 38
    <td><a target="_blank" href="${rc.contextPath}/fofo/${fofoForm.get_id()}/edit">detail</a></td>
39
    <td><a target="_blank" href="${rc.contextPath}/fofo/${fofoForm.get_id()}/edit">detail</a></td>
22114 ashik.ali 40
  </tr>
41
 
42
#end
43
      </tbody>
44
        </table>   
45
      </div>
46
      <div class="col-md-12 text-center">
47
      <ul class="pagination pagination-lg pager" id="myPager"></ul>
48
      </div>
49
	</div>
50
</div>
51
 
52
</body>
53
</html>