| 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>
|
| 22200 |
amit.gupta |
23 |
<th>State</th>
|
| 22196 |
amit.gupta |
24 |
<th>Detail</th>
|
|
|
25 |
<th>Docs</th>
|
| 22114 |
ashik.ali |
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>
|
| 22200 |
amit.gupta |
39 |
<td><a target="_blank" href="${rc.contextPath}/fofo/${fofoForm.get_id()}/edit">Detail</a></td>
|
|
|
40 |
<td><a target="_blank" href="${rc.contextPath}/fofo/${fofoForm.get_id()}/file-display">Docs</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>
|