fix admin user view, add last login information

This commit is contained in:
TuxCoder 2020-06-02 18:34:11 +02:00
parent 67b69104d6
commit 359281c5c9

View file

@ -9,7 +9,9 @@
<tr> <tr>
<th>username</th> <th>username</th>
<th>created_at</th> <th>created_at</th>
<th>modified_at<th> <th>modified_at</th>
<th>last_login</th>
<th>action</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -18,7 +20,8 @@
<td>{{ user.username }}</td> <td>{{ user.username }}</td>
<td>{{ user.created_at }}</td> <td>{{ user.created_at }}</td>
<td>{{ user.modified_at }}</td> <td>{{ user.modified_at }}</td>
<td></td> <td>{{ user.last_login }}</td>
<td> </td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>