Subversion Repositories SmartDukaan

Rev

Rev 24383 | Rev 24484 | 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>
6
	    					<th>First Name</th>
7
	    					<th>Last Name</th>
8
	    					<th>Email</th>
9
	    					<th>Mobile Number</th>
10
	    					<th>Created Date</th>
11
	    					<th>Reset Password</th>
12
	    				</tr>
13
	    				#if(!$authUsers.isEmpty())
14
			    			#foreach( $authUser in $authUsers )
15
			    				<tr class="authUser-details" data="$authUser.getId()">
16
			    					<td>$authUser.getFirstName()</td>
17
			    					<td>$authUser.getLastName()</td>
18
			    					<td>$authUser.getEmailId()</td>
19
			    					<td>$authUser.getMobileNumber()</td>
20
			    					<td>$authUser.getFormattedCreateTimestamp()</td>
24451 govind 21
			    					<td><button class="btn btn-primary reset-password" data-id="$authUser.getEmailId()">Reset</button></td>
24383 amit.gupta 22
			    				</tr>
23
			    			#end
24
		    			#else
25
		    				<tr>
26
		    					<td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
27
		    				</tr>
28
		    			#end
29
	    			</tbody>
30
	    		</table>
31
	    	</div>
32
	    </div>