chore(dgsi/user_list): Sort by newest arrival instead of username
This commit is contained in:
parent
dd3e62e30a
commit
cf1e8abf6d
1 changed files with 1 additions and 1 deletions
|
@ -350,7 +350,7 @@ class CreateKanidmAccountView(StaffRequiredMixin, SuccessMessageMixin, FormView)
|
|||
|
||||
class UserListView(StaffRequiredMixin, ListView):
|
||||
model = User
|
||||
ordering = ["username"]
|
||||
ordering = ["-date_joined"]
|
||||
|
||||
|
||||
class UserAssignVlanView(StaffRequiredMixin, HtmxPostObjectMixin, View):
|
||||
|
|
Loading…
Add table
Reference in a new issue