ociule
ociule
FWIW, the stacktrace looks exactly like https://stackoverflow.com/questions/44144584/typeerror-cant-pickle-thread-lock-objects So I think the fix suggested over there is worth testing.
I'm also seeing this fail with orca 1.2.1 (and also 1.1.1), on Windows Server 2008, with a non-admin account, with any plot type, not just Scattermapbox. With an admin account,...
Regarding this requirement, ad-m means it will work using assign_perm or you can do it through the admin site by adding the `articles.view_website` perm to the admin group: ```py #######...
I've managed to integrate guardian per row permission checking into the admin site. Admin list and change views now work as expected: a staff user can view and change rows...
@ad-m I propose writing the MR and you'd have to review it and merge it. Will that work for you ? Thanks for the suggestion for accept_global_perms.
Hi Kerwin, I just tested this example with Django 3.2 and the latest release of Django-Guardian and it worked with this fix: change 'polls.change_choice' to 'polls.view_choice' (as you've said you...
Thanks ad-m! This simplifies the proposed code to: ```py class ChoiceAdmin(GuardedModelAdmin): def get_permission_codename(self, action): opts = self.opts return f"{opts.app_label}.{get_permission_codename(action, opts)}" def get_queryset(self, request): return get_objects_for_user(request.user, self.get_permission_codename('view')) def has_module_permission(self, request): qs...
I have tested the proposed solution. Given it works, IMO it's OK to close this issue.
`ipyparams._ipython_support` is True btw.
I am very interested in what pandoc-fignos does, but work with RST. It would be great if fignos handled rst input as well.