Subversion Repositories SmartDukaan

Rev

Rev 33105 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 33105 Rev 35576
Line 51... Line 51...
51
        <div class="row">
51
        <div class="row">
52
            <div class="col-lg-12">
52
            <div class="col-lg-12">
53
                <table class="table table-striped table-advance table-hover" id="authTable">
53
                <table class="table table-striped table-advance table-hover" id="authTable">
54
                    <thead>
54
                    <thead>
55
                    <tr>
55
                    <tr>
-
 
56
                        <th>Id</th>
56
                        <th>Employee Code</th>
57
                        <th>Employee Code</th>
57
                        <th>First Name</th>
58
                        <th>First Name</th>
58
                        <th>Last Name</th>
59
                        <th>Last Name</th>
59
                        <th>Email</th>
60
                        <th>Email</th>
60
                        <th>Mobile Number</th>
61
                        <th>Mobile Number</th>
Line 71... Line 72...
71
                    <tbody>
72
                    <tbody>
72
 
73
 
73
                        #if(!$authUsers.isEmpty())
74
                        #if(!$authUsers.isEmpty())
74
                            #foreach( $authUser in $authUsers )
75
                            #foreach( $authUser in $authUsers )
75
                            <tr>
76
                            <tr>
-
 
77
                                <td>$authUser.getId()</td>
76
                                <td>$authUser.getEmployeeCode()</td>
78
                                <td>$authUser.getEmployeeCode()</td>
77
                                <td>$authUser.getFirstName()</td>
79
                                <td>$authUser.getFirstName()</td>
78
                                <td>$authUser.getLastName()</td>
80
                                <td>$authUser.getLastName()</td>
79
                                <td>$authUser.getEmailId()</td>
81
                                <td>$authUser.getEmailId()</td>
80
                                <td>$authUser.getMobileNumber()</td>
82
                                <td>$authUser.getMobileNumber()</td>