Subversion Repositories SmartDukaan

Rev

Rev 34236 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div class="col-lg-12">
    <table class="table table-bordered table-condensed" id="creditNoteList" style="width:100%">
        <thead class="row htable" style="background:#F5F5F5;">
        <tr style="color:black;">
            <th>Cn Number</th>
            <th>Cn Date</th>
            <th>Cn Type</th>
            <th>Action</th>
        </tr>
        </thead>
        <tbody>
            #foreach($note in $creditNotes)
            <tr>
                <td>$note.getCreditNoteNumber()</td>
                <td>$note.getCnDate()</td>
                <td>$note.getType()</td>
                <td>
                    <a href="#" class="download-credit-note"
                       data-creditnumber="$note.getCreditNoteNumber()">Download</a>
                    <a href="#" class="download-credit-note-attachement"
                       data-creditnumber="$note.getCreditNoteNumber()">Attachments</a>
                </td>

            </tr>
            #end
        </tbody>
    </table>
</div>