fix admin user view, add last login information
This commit is contained in:
parent
67b69104d6
commit
359281c5c9
|
@ -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,6 +20,7 @@
|
||||||
<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>{{ user.last_login }}</td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in a new issue