Subversion Repositories SmartDukaan

Rev

Rev 34198 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
34163 ranu 1
<div class="col-lg-12">
2
 
3
    <table class="table table-bordered table-condensed" id="hidCatalogAllocationList" style="width:100%">
4
        <thead class="row htable" style="background:#F5F5F5;">
5
        <tr style="color:black;">
6
            <th>Catalog Id</th>
7
            <th>Model Number</th>
8
            <th>Brand</th>
9
            <th>Availability</th>
10
            <th>Allocation</th>
11
            <th>Purchase Limit</th>
12
        </tr>
13
        </thead>
14
        <tbody>
15
            #foreach($model in $hidAllocationModels)
16
            <tr>
17
                <td> $model.getCatalogId() </td>
18
                <td> $model.getModelNumber() </td>
19
                <td> $model.getBrand() </td>
20
                <td> $model.getAvailableStock() </td>
21
                <td> $model.getHidAllocation() </td>
22
                <td> $model.getPurchaseLimit() </td>
23
            </tr>
24
            #end
25
        </tbody>
26
    </table>
27
</div>