fix admin user view, add last login information

master
TuxCoder 2020-06-02 18:34:11 +02:00
parent 67b69104d6
commit 359281c5c9
1 changed files with 5 additions and 2 deletions

View File

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