django filer folder permissions #1399
wagnerfelix
started this conversation in
Ideas
Replies: 1 comment
-
Unfortunately, Django admin does the ordering on queryset level. An alternative might be creating a custom filter which would allow to only show certain users, groups, etc. or certain folders. I have not done this, but it might be worth exploring. @vinitkumar Do you have any thoughts? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
first of all thank you for regularly updating your code.
I would like to request a change for the folder permission admin. We have quite a few permissions and since the list is growing it would be great if the list could be ordered by "pretty_logical_path" and "who". Now i already tried simply adding
ordering = ("pretty_logical_path", )
to thePermissionAdmin
but that or any other ordering did not have any effect. I guess you can't order by string? Any help would be appreciated.Regards
Beta Was this translation helpful? Give feedback.
All reactions