Browse Source

HOT-FIX: adiciona nome e sobrenome de usuários

pull/1765/head
Edward Ribeiro 7 years ago
parent
commit
acddd41eea
  1. 4
      sapl/templates/auth/user_list.html

4
sapl/templates/auth/user_list.html

@ -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 %}

Loading…
Cancel
Save