Subversion Repositories SmartDukaan

Rev

Rev 25570 | Rev 29209 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
24383 amit.gupta 1
		<div class="row">
2
	    	<div class="col-lg-12">
3
	    		<table class="table table-striped table-advance table-hover">
4
	    			<tbody>
5
	    				<tr>
27595 tejbeer 6
	    				    <th>Employee Code</th>
24383 amit.gupta 7
	    					<th>First Name</th>
8
	    					<th>Last Name</th>
9
	    					<th>Email</th>
10
	    					<th>Mobile Number</th>
24484 amit.gupta 11
	    					<th>Gmail Id</th>
24383 amit.gupta 12
	    					<th>Created Date</th>
13
	    					<th>Reset Password</th>
25570 tejbeer 14
	    					<th>Remove</th>
24383 amit.gupta 15
	    				</tr>
16
	    				#if(!$authUsers.isEmpty())
17
			    			#foreach( $authUser in $authUsers )
18
			    				<tr class="authUser-details" data="$authUser.getId()">
27595 tejbeer 19
			    				    <td>$authUser.getEmployeeCode()</td>
24383 amit.gupta 20
			    					<td>$authUser.getFirstName()</td>
21
			    					<td>$authUser.getLastName()</td>
22
			    					<td>$authUser.getEmailId()</td>
23
			    					<td>$authUser.getMobileNumber()</td>
24484 amit.gupta 24
			    					<td>#if($authUser.getGmailId())
25
			    							<span>$authUser.getGmailId()</span>
26
			    							<button class="mk_gmail_edit btn btn-primary" data-id="$authUser.getEmailId()">Edit</button> 
27
			    						#else
28
			    							<span></span>
29
			    							<button class="mk_gmail_edit btn btn-primary" data-id="$authUser.getEmailId()">Add</button> 
30
			    						#end
31
			    					</td>
24383 amit.gupta 32
			    					<td>$authUser.getFormattedCreateTimestamp()</td>
24451 govind 33
			    					<td><button class="btn btn-primary reset-password" data-id="$authUser.getEmailId()">Reset</button></td>
25570 tejbeer 34
			    					<td><button class="btn btn-primary remove-user" data-id="$authUser.getId()">Remove</button></td>
24383 amit.gupta 35
			    				</tr>
36
			    			#end
37
		    			#else
38
		    				<tr>
39
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
40
		    				</tr>
41
		    			#end
42
	    			</tbody>
43
	    		</table>
44
	    	</div>
45
	    </div>