34 lines
		
	
	
		
			798 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			798 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base_settings_page.html" %}
 | |
| {% block content %}
 | |
| 
 | |
| <table class="table table-hover" style="max-width: 600px;" aria-describedby="Account details">
 | |
|     <tbody>
 | |
|     <tr>
 | |
|         <th scope="row">User ID</th>
 | |
|         <td>{{ u.uid.0 }}</td>
 | |
|     </tr>
 | |
|     <tr>
 | |
|         <th scope="row">First name</th>
 | |
|         <td>{{ u.first_name }}</td>
 | |
|     </tr>
 | |
|     <tr>
 | |
|         <th scope="row">Last name</th>
 | |
|         <td>{{ u.last_name }}</td>
 | |
|     </tr>
 | |
|     <tr>
 | |
|         <th scope="row">Username</th>
 | |
|         <td>{{ u.username }}</td>
 | |
|     </tr>
 | |
|     <tr>
 | |
|         <th scope="row">Email</th>
 | |
|         <td>{{ u.email }}</td>
 | |
|     </tr>
 | |
|     <tr>
 | |
|         <th scope="row">Account type</th>
 | |
|         <td>{% if u.admin %}Admin{% else %}Regular user{% endif %}</td>
 | |
|     </tr>
 | |
|     </tbody>
 | |
| </table>
 | |
| 
 | |
| {% endblock content %}
 |