1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #8194: Enable bulk user assignment to groups under admin UI

This commit is contained in:
jeremystretch
2021-12-30 13:19:18 -05:00
parent 51851f6c99
commit cdd51aee75
3 changed files with 32 additions and 1 deletions

View File

@ -17,7 +17,7 @@ admin.site.unregister(User)
@admin.register(Group)
class GroupAdmin(admin.ModelAdmin):
fields = ('name',)
form = forms.GroupAdminForm
list_display = ('name', 'user_count')
ordering = ('name',)
search_fields = ('name',)