Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
34236 ranu 1
<div class="col-lg-12">
2
    <table class="table table-bordered table-condensed" id="creditNoteList" style="width:100%">
3
        <thead class="row htable" style="background:#F5F5F5;">
4
        <tr style="color:black;">
5
            <th>Cn Number</th>
6
            <th>Cn Date</th>
7
            <th>Cn Type</th>
8
            <th>Action</th>
9
        </tr>
10
        </thead>
11
        <tbody>
12
            #foreach($note in $creditNotes)
13
            <tr>
14
                <td>$note.getCreditNoteNumber()</td>
15
                <td>$note.getCnDate()</td>
16
                <td>$note.getType()</td>
34256 ranu 17
                <td>
18
                    <a href="#" class="download-credit-note"
19
                       data-creditnumber="$note.getCreditNoteNumber()">Download</a>
20
                    <a href="#" class="download-credit-note-attachement"
21
                       data-creditnumber="$note.getCreditNoteNumber()">Attachments</a>
22
                </td>
34236 ranu 23
 
24
            </tr>
25
            #end
26
        </tbody>
27
    </table>
28
</div>