Subversion Repositories SmartDukaan

Rev

Rev 24451 | 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>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>$authUser.getFormattedCreateTimestamp()</td>
                                                                <td><button class="btn btn-primary" 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>