Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<style>
    .ribbon-highlight {
        position: relative;
        margin: 0.1em;
    }

    .ribbon-highlight:before {
        content: "";
        z-index: -1;
        left: -0.5em;
        top: 0.1em;
        border-width: 0.5em;
        border-style: solid;
        border-color: lightgreen;
        position: absolute;
        width: 100%;
        border-left-color: transparent;
        border-right-color: transparent;
    }
</style>

<div class="col-md-12">

    <table class="table table-border table-condensed table-bordered"
           id="movement-history" style="width: 100%;">
        <p><b>Model Number : $categorisedCatalogListModelList.get(0).getModelNumber()</b></p>
        <thead class="row">
        <tr>
            <th>Current Status</th>
            <th>Staus Created Date</th>
            <th>Staus End Date</th>
        </tr>
        </thead>
        <tbody>
            #foreach($catalog in $categorisedCatalogListModelList)
            <tr>
                <td>$catalog.getCurrentStatus()</td>
                <td>$catalog.getStatusCreatedDate()</td>
                <td>$catalog.getStatusEndDate()</td>
            </tr>

            #end

        </tbody>


    </table>

</div>
<script type="text/javascript">
    $(document).ready(function () {
        table = $('#movement-history').DataTable({
            paging: true
        });

    });
</script>