@f1nality
I cannot see Groups and Permissions list while adding User/Group. It says "No Results Found."
Although I can see Groups and Permissions in Authentication and Authorization tab.
Here is the screenshot below.
The options are avialable in the page source.
Python : 2.7.9
Django : 1.10
Are you using any widget packages? Here is page source from the demo:
<select multiple="" id="id_groups" name="groups" tabindex="-1" class="select2-hidden-accessible" aria-hidden="true">
<option value="1" selected="selected">users</option>
</select>
while you have data-field-name, etc. Maybe it some sort of conflict.
I am using the django-import_export app.
Can't seem to find the conflict.
The groups are being shown in the page source. Why won't it show in the page?
Could be a problem with django-import-export templates?
@SalahAdDin I don't think so.
@vishalbanwari you have some custom data-field-name and other attributes in your widgets code - this should be made by some 3rd party package and I think that it can conflict with JET. Could you copy-past your INSTALLED_APPS setting?
I was facing the same issue. I moved from Django 1.10.1 to Django 1.9.9 and now everything works fine, as in the demo website. Maybe there's something conflicting with Django 1.10 version.
I was facing the same issue.
How can i customize the "jet_select2_lookups" filter.
Please Help...
I was facing the same issue here. Can't see "Groups and Permissions list". Here are some additional information:
INSTALLED_APPS = [
'jet.dashboard',
'jet',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]
Django version: 1.10.1
When I switched back to django 'default' admin template - I can see it clearly (no issue).
Probably there's something conflicting?
Did anyone by any chance have any feedback regarding this subject?
Thanks
-gs
I have the same problem, cannot see Groups and Permissions list while adding User/Group
install only:

You were right, it's a issue with django 1.10 filter_horizontal. Fixed in dev and will be released in 1.0.2
it doesn't seem to be fixed in 1.10.3, are we sure this is an issue in Django code? Do we have a link to a ticket on Django system by any chance?
it looks to me like it comes from this line. A select multiple looks to be styled the same way than a select input. I'm fixing in my fork and will provide a PR :)
I also got the same problem. Any fix?
@m-vdb What's about your PR?
sorry at the time I didn't do one but instead worked on my own fork. It's a while ago so I really don't remember if I even fixed the thing
@m-vdb, can you share us your fork?
@m-vdb Which problems solve your fork?
I am working on a Django based project which uses Django (v2.0.4) in Python 3.6 installed Ubuntu system.
I am using django-jet to customize the admin interface.
The problem is, when I select permissions for the group, I get multi-select field but I do not want that and in place of it, I want to show permissions available for the groups as checkboxes so that User could check/uncheck permissions easily from there.
Here in this link I have asked Question in StackOverflow: https://stackoverflow.com/questions/54215295/how-to-change-django-admin-group-permissions-multi-select-options-to-checkboxes.
@f1nality , can you please suggest me to do this.
Thank you.