mirror of
https://gitlab.crans.org/mediatek/med.git
synced 2025-06-30 00:31:08 +02:00
Swap AbstractBaseUser to AbstractUser
This commit is contained in:
@ -111,7 +111,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
<div class="panel panel-default">
|
||||
{% if request_user.is_authenticated %}
|
||||
<div class="panel-heading">
|
||||
<h4>{{ request_user.name }} {{ request_user.last_name }}</h4>
|
||||
<h4>{{ request_user.first_name }} {{ request_user.last_name }}</h4>
|
||||
</div>
|
||||
<table class="table">
|
||||
<tr>
|
||||
@ -124,7 +124,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">Prénom</th>
|
||||
<td class="text-right">{{ request_user.name }}</td>
|
||||
<td class="text-right">{{ request_user.first_name }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
{% else %}
|
||||
|
Reference in New Issue
Block a user