Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 29578 |
tejbeer |
1 |
|
|
|
2 |
<table class="table table-striped priceDropDetails" >
|
|
|
3 |
<thead>
|
|
|
4 |
<tr>
|
|
|
5 |
<th>Item</th>
|
|
|
6 |
<th>Imei</th>
|
|
|
7 |
<th>Invoice</th>
|
|
|
8 |
<th>Amount</th>
|
|
|
9 |
<button type="button" class="btn btn-default" data-dismiss="modal" style="float:right">X</button>
|
|
|
10 |
|
|
|
11 |
</tr>
|
|
|
12 |
</thead>
|
|
|
13 |
|
|
|
14 |
<tbody>
|
|
|
15 |
|
|
|
16 |
#foreach($activationItemDetail in $activationItemDetails)
|
|
|
17 |
|
|
|
18 |
<tr>
|
|
|
19 |
<td><b>$activationItemDetail.getBrand() $activationItemDetail.getModelName() $activationItemDetail.getModelNumber() </b></td>
|
|
|
20 |
<td>$activationItemDetail.getImei()</td>
|
|
|
21 |
<td>$activationItemDetail.getInvoiceNumber()</td>
|
|
|
22 |
<td>$activationItemDetail.getAmount()</td>
|
|
|
23 |
</tr>
|
|
|
24 |
|
|
|
25 |
#end
|
|
|
26 |
</tbody>
|
|
|
27 |
|
|
|
28 |
</table>
|
|
|
29 |
<div class="modal-footer">
|
|
|
30 |
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
|
|
31 |
</div>
|