Subversion Repositories SmartDukaan

Rev

Rev 23419 | Rev 24992 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div class="row">
                <div class="col-lg-12">
                        <table class="table table-striped table-advance table-hover">
                                <tbody>
                                        <tr>
                                                <th>Item Id</th>
                                                <th>Description</th>
                                                <th>Advance Amount</th>
                                                <th>Tentative Amount</th>
                                                <th>Created On</th>
                                                <th>Active</th>
                                                <th>Expire</th>
                                        </tr>
                                        #if(!$prebookingListings.isEmpty())
                                                #foreach( $prebookingListing in $prebookingListings )
                                                        <tr class="prebooking-listing-details" data="$prebookingListing.getId()">
                                                                <td>$prebookingListing.getItemId()</td>
                                                                <td>$catalogIdDescriptionMap.get($prebookingListing.getCatalogId())</td>
                                                                <td>$prebookingListing.getAdvanceAmount()</td>
                                                                <td>$prebookingListing.getTentativeAmount()</td>
                                                                <td>$prebookingListing.getFormattedCreateTimestamp()</td>
                                                                #if(($prebookingListing.getActiveTimestamp()) && (!$prebookingListing.getExpireTimestamp()))
                                                                        <td><i class="fa fa-check" aria-hidden="true"></i></td>
                                                                #else
                                                                        <td><i class="fa fa-times" aria-hidden="true"></i></td>
                                                                #end
                                                                #if($prebookingListing.getExpireTimestamp())
                                                                        <td><i class="fa fa-check" aria-hidden="true"></i></td>
                                                                #else
                                                                        <td><i class="fa fa-times" aria-hidden="true"></i></td>
                                                                #end
                                                        </tr>
                                                #end
                                        #else
                                                <tr>
                                                        <td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
                                                </tr>
                                        #end
                                </tbody>
                        </table>
                </div>
            </div>