Subversion Repositories SmartDukaan

Rev

Rev 24451 | Rev 25570 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 24451 Rev 24484
Line 5... Line 5...
5
	    				<tr>
5
	    				<tr>
6
	    					<th>First Name</th>
6
	    					<th>First Name</th>
7
	    					<th>Last Name</th>
7
	    					<th>Last Name</th>
8
	    					<th>Email</th>
8
	    					<th>Email</th>
9
	    					<th>Mobile Number</th>
9
	    					<th>Mobile Number</th>
-
 
10
	    					<th>Gmail Id</th>
10
	    					<th>Created Date</th>
11
	    					<th>Created Date</th>
11
	    					<th>Reset Password</th>
12
	    					<th>Reset Password</th>
12
	    				</tr>
13
	    				</tr>
13
	    				#if(!$authUsers.isEmpty())
14
	    				#if(!$authUsers.isEmpty())
14
			    			#foreach( $authUser in $authUsers )
15
			    			#foreach( $authUser in $authUsers )
15
			    				<tr class="authUser-details" data="$authUser.getId()">
16
			    				<tr class="authUser-details" data="$authUser.getId()">
16
			    					<td>$authUser.getFirstName()</td>
17
			    					<td>$authUser.getFirstName()</td>
17
			    					<td>$authUser.getLastName()</td>
18
			    					<td>$authUser.getLastName()</td>
18
			    					<td>$authUser.getEmailId()</td>
19
			    					<td>$authUser.getEmailId()</td>
19
			    					<td>$authUser.getMobileNumber()</td>
20
			    					<td>$authUser.getMobileNumber()</td>
-
 
21
			    					<td>#if($authUser.getGmailId())
-
 
22
			    							<span>$authUser.getGmailId()</span>
-
 
23
			    							<button class="mk_gmail_edit btn btn-primary" data-id="$authUser.getEmailId()">Edit</button> 
-
 
24
			    						#else
-
 
25
			    							<span></span>
-
 
26
			    							<button class="mk_gmail_edit btn btn-primary" data-id="$authUser.getEmailId()">Add</button> 
-
 
27
			    						#end
-
 
28
			    					</td>
20
			    					<td>$authUser.getFormattedCreateTimestamp()</td>
29
			    					<td>$authUser.getFormattedCreateTimestamp()</td>
21
			    					<td><button class="btn btn-primary reset-password" data-id="$authUser.getEmailId()">Reset</button></td>
30
			    					<td><button class="btn btn-primary reset-password" data-id="$authUser.getEmailId()">Reset</button></td>
22
			    				</tr>
31
			    				</tr>
23
			    			#end
32
			    			#end
24
		    			#else
33
		    			#else