Skip to content

Commit

Permalink
Fixes #13966: Restore 'last login' column on users table
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed Oct 4, 2023
1 parent a46255d commit b93b331
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/release-notes/version-3.6.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## v3.6.4 (FUTURE)

### Bug Fixes

* [#13966](https://github.com/netbox-community/netbox/issues/13966) - Restore "last login" column on users table

---

## v3.6.3 (2023-09-26)
Expand Down
2 changes: 1 addition & 1 deletion netbox/users/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class Meta(NetBoxTable.Meta):
model = NetBoxUser
fields = (
'pk', 'id', 'username', 'first_name', 'last_name', 'email', 'groups', 'is_active', 'is_staff',
'is_superuser',
'is_superuser', 'last_login',
)
default_columns = ('pk', 'username', 'first_name', 'last_name', 'email', 'is_active')

Expand Down

0 comments on commit b93b331

Please sign in to comment.