Hello there!
In different websites, we needed to use django-oidc-provider, and everything was fine (thanks!) up to the point where we decided to drop django.contrib.admin and use only the wagtail administration.
So we developed the wrapper between wagtail and django-oidc-provider, namely https://github.com/webu/wagtail-oidc-provider
And everything works perfectly :)
I Just want to make a suggestion: we had to copy/paste the custom ClientForm because we could not import it from oidc_provider.admin because the decorator @admin is complaining that contrib.admin is not installed (which is true, and we don't want).
So moving the form in a dedicated file would fixe the issue. Is it something you would consider? Even if this small copy/past is not a big deal, it is a redundancy I would like to remove.
Hello there!
In different websites, we needed to use django-oidc-provider, and everything was fine (thanks!) up to the point where we decided to drop
django.contrib.adminand use only the wagtail administration.So we developed the wrapper between wagtail and django-oidc-provider, namely https://github.com/webu/wagtail-oidc-provider
And everything works perfectly :)
I Just want to make a suggestion: we had to copy/paste the custom
ClientFormbecause we could not import it fromoidc_provider.adminbecause the decorator@adminis complaining thatcontrib.adminis not installed (which is true, and we don't want).So moving the form in a dedicated file would fixe the issue. Is it something you would consider? Even if this small copy/past is not a big deal, it is a redundancy I would like to remove.