mirror of
https://gitlab.crans.org/mediatek/med.git
synced 2025-06-30 11:11:11 +02:00
Swap AbstractBaseUser to AbstractUser
This commit is contained in:
@ -40,7 +40,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
</thead>
|
||||
{% for user in users_list %}
|
||||
<tr>
|
||||
<td>{{ user.name }}</td>
|
||||
<td>{{ user.first_name }}</td>
|
||||
<td>{{ user.last_name }}</td>
|
||||
<td>{{ user.username }}</td>
|
||||
<td>{{ user.email }}</td>
|
||||
|
@ -59,7 +59,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
<table class="table table-striped">
|
||||
<tr>
|
||||
<th>Prénom</th>
|
||||
<td>{{ user.name }}</td>
|
||||
<td>{{ user.first_name }}</td>
|
||||
<th>Nom</th>
|
||||
<td>{{ user.last_name }}</td>
|
||||
</tr>
|
||||
@ -77,7 +77,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Adresse</th>
|
||||
<td>{{ user.adresse }}</td>
|
||||
<td>{{ user.address }}</td>
|
||||
<th>Telephone</th>
|
||||
<td>{{ user.telephone }}</td>
|
||||
</tr>
|
||||
|
Reference in New Issue
Block a user