Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
29707 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="float:right">X</button>
9
 
10
					</tr>
11
			</thead>
12
 
13
			<tbody>
14
 
15
				    #foreach($offerItem in $offerItems)
16
 
17
					    <tr> 
18
						   <td><b>$offerItem.getBrand() $offerItem.getModelName() $offerItem.getModelNumber() </b></td> 
19
						   <td>$offerItem.getImei()</td>
20
						   <td>$offerItem.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>