Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 28455 |
tejbeer |
1 |
|
|
|
2 |
<table class="table table-striped priceDropDetails" >
|
|
|
3 |
<thead>
|
|
|
4 |
<tr>
|
|
|
5 |
<th>Item</th>
|
|
|
6 |
<th>Imei</th>
|
|
|
7 |
<th>Amount</th>
|
|
|
8 |
<button type="button" class="btn btn-default" data-dismiss="modal" style="margin-left: 259px;">X</button>
|
|
|
9 |
|
|
|
10 |
</tr>
|
|
|
11 |
</thead>
|
|
|
12 |
|
|
|
13 |
<tbody>
|
|
|
14 |
|
|
|
15 |
#foreach($priceDropdetailsList in $priceDropdetailsList)
|
|
|
16 |
|
|
|
17 |
<tr>
|
|
|
18 |
<td><b>$priceDropdetailsList.getBrand() $priceDropdetailsList.getModelName() </b></td>
|
|
|
19 |
<td>$priceDropdetailsList.getImei()</td>
|
|
|
20 |
<td>$priceDropdetailsList.getAmount()</td>
|
|
|
21 |
</tr>
|
|
|
22 |
|
|
|
23 |
#end
|
|
|
24 |
</tbody>
|
|
|
25 |
|
|
|
26 |
</table>
|
|
|
27 |
<div class="modal-footer">
|
|
|
28 |
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
|
|
29 |
</div>
|