|
@ -11,7 +11,8 @@ |
|
|
<table class="table table-striped table-hover"> |
|
|
<table class="table table-striped table-hover"> |
|
|
<thead> |
|
|
<thead> |
|
|
<tr> |
|
|
<tr> |
|
|
<th>Nome de Usuário</th> |
|
|
<th>Nome de Login</th> |
|
|
|
|
|
<th>Nome</th> |
|
|
<th>E-mail do Usuário</th> |
|
|
<th>E-mail do Usuário</th> |
|
|
</tr> |
|
|
</tr> |
|
|
</thead> |
|
|
</thead> |
|
@ -21,6 +22,7 @@ |
|
|
<td> |
|
|
<td> |
|
|
<a href="{% url 'sapl.base:user_edit' user.pk %}">{{ user.username }}</a> |
|
|
<a href="{% url 'sapl.base:user_edit' user.pk %}">{{ user.username }}</a> |
|
|
</td> |
|
|
</td> |
|
|
|
|
|
<td>{{ user.first_name }} {{ user.last_name }}</td> |
|
|
<td>{{ user.email }}</td> |
|
|
<td>{{ user.email }}</td> |
|
|
</tr> |
|
|
</tr> |
|
|
{% endfor %} |
|
|
{% endfor %} |
|
|