Subversion Repositories SmartDukaan

Rev

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

<div class="modal-body">
    <h4 class="modal-title">Catalog Age detail</h4>
    <table class="table">
        #if($catalogAgedModels.get(0).getSupplier())
            <h5 align="center" style="color: #2b669a;">$catalogAgedModels.get(0).getSupplier()</h5>
        #end
        <h5 align="center" style="color: #cc0f41;">$catalogAgedModels.get(0).getBrand()
            -$catalogAgedModels.get(0).getModelName()</h5>
        <thead>
        <th>Unsold</th>
        <th>Age(Day)</th>
        <tbody>
            #foreach($catalog in $catalogAgedModels)
                #if($catalog.getUnsold()>0)
                <tr>
                    <td style="width: 50px">$catalog.getUnsold()</td>
                    <td style="width: 50px">$catalog.getAge()</td>
                </tr>
                #end
            #end

        </tbody>
    </table>
</div>