Subversion Repositories SmartDukaan

Rev

Rev 24467 | Blame | Last modification | View Log | RSS feed

<div class="row">
                <div class="col-lg-12">
                        <table class="table table-bordered">
                                <tbody>
                                        <tr>
                                                <th>Partner</th>
                                                <th>SubCategory</th>
                                                <th>Assigned To</th>
                                                <th>Created TimeStamp</th>
                                                <th>Close</th>
                                                <th>Action</th>
                                        </tr>
                                        #if(!$tickets.isEmpty())
                                                                #foreach($ticket in $tickets)
                                                                <tr>
                                                                <td>$fofoIdsAndCustomRetailer.get($ticket.getFofoId()).getBusinessName()</td>
                                                                <td  data-toggle="modal" data-target="#myModal" data-ticketid="$ticket.getId()" id="activities" data-assignee="$authUserIdAndAuthUserMap.get($ticket.getAssigneeId()).getFirstName()"><a href="#">$subCategoryIdAndSubCategoryMap.get($ticket.getSubCategoryId()).getName()</a></td>                                                    
                                                        <td>$authUserIdAndAuthUserMap.get($ticket.getAssigneeId()).getFirstName()</td>
                                                        <td>$ticket.getFormattedCreateTimestamp()</td>
                                                        #if($ticket.getCloseTimestamp())
                                                        <td>$ticket.getFormattedCloseTimestamp()</td>
                                                        #else
                                                                        <td>Opened</td>
                                                        #end
                                                        <td><button class="btn btn-primary" id="edit-ticket" data-ticketid="$ticket.getId()" data-target="#theModal" data-toggle="modal" data-backdrop="false">Edit</button></td>
                                                        </tr>
                                                        #end
                                                        #else
                                                        <tr>
                                                        <td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
                                                </tr>
                                                        #end
                                </tbody>
                        </table>
                </div>
            </div>