Subversion Repositories SmartDukaan

Rev

Rev 24451 | Rev 27595 | 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>First Name</th>
                                                <th>Last Name</th>
                                                <th>Email</th>
                                                <th>Mobile Number</th>
                                                <th>Gmail Id</th>
                                                <th>Created Date</th>
                                                <th>Reset Password</th>
                                        </tr>
                                        #if(!$authUsers.isEmpty())
                                                #foreach( $authUser in $authUsers )
                                                        <tr class="authUser-details" data="$authUser.getId()">
                                                                <td>$authUser.getFirstName()</td>
                                                                <td>$authUser.getLastName()</td>
                                                                <td>$authUser.getEmailId()</td>
                                                                <td>$authUser.getMobileNumber()</td>
                                                                <td>#if($authUser.getGmailId())
                                                                                <span>$authUser.getGmailId()</span>
                                                                                <button class="mk_gmail_edit btn btn-primary" data-id="$authUser.getEmailId()">Edit</button> 
                                                                        #else
                                                                                <span></span>
                                                                                <button class="mk_gmail_edit btn btn-primary" data-id="$authUser.getEmailId()">Add</button> 
                                                                        #end
                                                                </td>
                                                                <td>$authUser.getFormattedCreateTimestamp()</td>
                                                                <td><button class="btn btn-primary reset-password" data-id="$authUser.getEmailId()">Reset</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>