Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | 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>
17
                <td><a href="#" class="download-credit-note"
18
                       data-creditnumber="$note.getCreditNoteNumber()">Download</a></td>
19
 
20
            </tr>
21
            #end
22
        </tbody>
23
    </table>
24
</div>