Subversion Repositories SmartDukaan

Rev

Rev 34198 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div class="col-lg-12">

    <table class="table table-bordered table-condensed" id="hidCatalogAllocationList" style="width:100%">
        <thead class="row htable" style="background:#F5F5F5;">
        <tr style="color:black;">
            <th>Catalog Id</th>
            <th>Model Number</th>
            <th>Brand</th>
            <th>Availability</th>
            <th>Allocation</th>
            <th>Purchase Limit</th>
        </tr>
        </thead>
        <tbody>
            #foreach($model in $hidAllocationModels)
            <tr>
                <td> $model.getCatalogId() </td>
                <td> $model.getModelNumber() </td>
                <td> $model.getBrand() </td>
                <td> $model.getAvailableStock() </td>
                <td> $model.getHidAllocation() </td>
                <td> $model.getPurchaseLimit() </td>
            </tr>
            #end
        </tbody>
    </table>
</div>