1
0
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:
Alexandre Iooss
2019-08-08 12:16:40 +02:00
parent 0b42060c51
commit 781b2087a3
18 changed files with 242 additions and 243 deletions

View File

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