Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33888 ranu 1
<style>
2
    .ribbon-highlight {
3
        position: relative;
4
        margin: 0.1em;
5
    }
6
 
7
    .ribbon-highlight:before {
8
        content: "";
9
        z-index: -1;
10
        left: -0.5em;
11
        top: 0.1em;
12
        border-width: 0.5em;
13
        border-style: solid;
14
        border-color: lightgreen;
15
        position: absolute;
16
        width: 100%;
17
        border-left-color: transparent;
18
        border-right-color: transparent;
19
    }
20
</style>
21
 
22
<div class="col-md-12">
23
 
24
    <table class="table table-border table-condensed table-bordered"
25
           id="movement-history" style="width: 100%;">
26
        <p><b>Model Number : $categorisedCatalogListModelList.get(0).getModelNumber()</b></p>
27
        <thead class="row">
28
        <tr>
29
            <th>Current Status</th>
30
            <th>Staus Created Date</th>
31
            <th>Staus End Date</th>
32
        </tr>
33
        </thead>
34
        <tbody>
35
            #foreach($catalog in $categorisedCatalogListModelList)
36
            <tr>
37
                <td>$catalog.getCurrentStatus()</td>
38
                <td>$catalog.getStatusCreatedDate()</td>
39
                <td>$catalog.getStatusEndDate()</td>
40
            </tr>
41
 
42
            #end
43
 
44
        </tbody>
45
 
46
 
47
    </table>
48
 
49
</div>
50
<script type="text/javascript">
51
    $(document).ready(function () {
52
        table = $('#movement-history').DataTable({
53
            paging: true
54
        });
55
 
56
    });
57
</script>
58
 
59
 
60
 
61