-
-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not seeing category fields in admin? #79
Comments
I do have |
Django 1.6 includes jQuery 1.9.1 in the admin. It looks like treeTable.js needs to be updated in django-categories to be compatible. I'm currently working on trying to get jQueryMigrate included. |
I've overridden |
This was purely an issue with how treeTable.js and treeTable.css are working. Specifically, line 427 of treeTable.js needed the negative |
The simple fix: Put: in: editor/static/editor/jquery.treeTable.css |
I installed (pip) django-categories today, and added a field in my model:
before running
syncdb
.I have Categories in my admin, and I'm not seeing any file errors for treeTable or expand/collapse files, but I'm only seeing 1 level deep:
http://www.circa1977.net/snap/admin-categories.png
In the source for the page, I can see the child rows, but they don't show in the admin. Nor does a expand/collapse toggle.
The following doesn't seem to be true, either. I'm using fieldsets, and the categories field only shows up if I include it in the fieldsets in my ModelAdmin.
https://django-categories.readthedocs.org/en/latest/admin_settings.html
I'm using Django 1.6.
Should I be seeing something else in the admin? How do I enable the treeview + checkboxes described in the docs?
Thanks!
Mark
The text was updated successfully, but these errors were encountered: