26 lines
		
	
	
		
			561 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			561 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "mainLayout.html" %}
 | |
| 
 | |
| {% block content %}
 | |
| <table border="1" style="width: 80%;">
 | |
|     <thead>
 | |
|     <tr>
 | |
|         <td>id</td>
 | |
|         <td>Username</td>
 | |
|         <td>Email</td>
 | |
|         <td>Created at</td>
 | |
|         <td>Updated at</td>
 | |
|     </tr>
 | |
|     </thead>
 | |
|     <tbody>
 | |
|     {% for users in userArr %}
 | |
|     <tr>
 | |
|         <td>{{ users.id }}</td>
 | |
|         <td>{{ users.username }}</td>
 | |
|         <td>{{ users.email }}</td>
 | |
|         <td>{{ users.created_at }}</td>
 | |
|         <td>{{ users.updated_at }}</td>
 | |
|     </tr>
 | |
|     {% endfor %}
 | |
|     </tbody>
 | |
| </table>
 | |
| {% endblock %} |