| 
									
										
										
										
											2024-02-14 16:36:01 -03:00
										 |  |  | {% extends "base.html" %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block content %} | 
					
						
							| 
									
										
										
										
											2024-02-15 11:02:22 -03:00
										 |  |  | <table class="table table-striped"> | 
					
						
							|  |  |  |     <thead> | 
					
						
							|  |  |  |         <tr> | 
					
						
							|  |  |  |             <th>Username</th> | 
					
						
							|  |  |  |             <th>User Level</th> | 
					
						
							|  |  |  |             <th></th> | 
					
						
							|  |  |  |         </tr> | 
					
						
							|  |  |  |     </thead> | 
					
						
							|  |  |  |     <tbody> | 
					
						
							|  |  |  |         {% for user_acl in user_acl_list %} | 
					
						
							|  |  |  |         <tr> | 
					
						
							|  |  |  |             <td>{{ user_acl.user.username }}</td> | 
					
						
							|  |  |  |             <td>{{ user_acl.get_user_level_display }}</td> | 
					
						
							|  |  |  |             <td style="width: 1%; white-space: nowrap;"> | 
					
						
							|  |  |  |                 <a href="/user/manage/?uuid={{ user_acl.uuid }}" ><i class="far fa-edit"></i></a> | 
					
						
							|  |  |  |             </td> | 
					
						
							|  |  |  |         </tr> | 
					
						
							|  |  |  |         {% endfor %} | 
					
						
							|  |  |  |     </tbody> | 
					
						
							|  |  |  |     </table> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-17 17:29:57 -03:00
										 |  |  |     <a href="/user/manage/" class="btn btn-primary">Add User</a> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-14 16:36:01 -03:00
										 |  |  | {% endblock %} |