Phoebe Bright

Results 14 comments of Phoebe Bright

Created a pull request to fix this by simply moving the import django.conf statement in .**init**.py to the function where it is used. Not sure this is correct, but seems...

In case it helps, this is my multiple upload code. It is also customised to include some data linked to the image - sheetid and entryid The HTML:: add Add...

I'm actively using it for a couple of projects - made a few changes to suit my needs otherwise find it works fine.

I think I have the same question or similar question. I have the user login etc. working but now I needed to be able to use the keycloak admin api:...

Worth checking your Realm in django admin has been setup and redo the admin actions Refresh OpenID Connect .well_known and refresh Certificates. See initial setup https://django-keycloak.readthedocs.io/en/latest/scenario/initial_setup.html

Running on 9.0.2 and only problem is am having problems adding users directly into keycloak admin. Otherwise works fine.

The same is true for period jobs created using .schedule. My thought would be to add a tag or name to a scheduled job to make it easy to empty...

Use script in this stackoverflow : http://stackoverflow.com/questions/17537771/where-do-i-register-an-rq-scheduler-job-in-a-django-app

Found a combination of the answers in this SO helpful: https://stackoverflow.com/questions/17537771/where-do-i-register-an-rq-scheduler-job-in-a-django-app/32033454#32033454 Short answer: You can put it in apps.py, eg. ``` .__init__.py default_app_config = 'whos.apps.WhosAppConfig' apps.py from django.apps import AppConfig...