Jan Nakladal

Results 11 comments of Jan Nakladal

## Current WIP solution: - creates: - a new user - a new developer unpublished page - a new image collection - a new permission group with all necessary permissions...

django-allauth can't be used together with Wagtail till [the clash between Wagtail Site and Django Site](https://github.com/wagtail/wagtail/issues/2840) resolved. Some [work](https://github.com/wagtail/wagtail/pull/4142) is being done, but it's a blocker currently. related issues [here](https://github.com/wagtail/wagtail/issues/3834)...

[request template context processor](https://github.com/springload/madewithwagtail/blob/a04a2579f05a89121642cfaf6ef5062a69e78809/madewithwagtail/settings/base.py#L185) is in place. `context['request']` shouldn't fail in this configuration.

Sentry issue: [MADEWITHWAGTAIL-6](https://sentry.io/springload-sentry/madewithwagtail/issues/415676184/)

Maybe related with: [MADEWITHWAGTAIL-F](https://sentry.io/springload-sentry/madewithwagtail/issues/590876295/)h

Good spotting @loicteixeira . We allow user password authentication in allauth. So keeping WAGTAIL_PASSWORD_MANAGEMENT_ENABLED means we may set user password in admin - good to keep that option. I would...

I did a quick look and haven't found any code that strips any part of the address. I think Institution / building name isn't part of the standard postal address...

The issue is known for a quite long time - see #68 But nothing has happened in this matter yet.

crontab `0,15,30,45 * * * * ` isn't fully supported by this library out of the box. Jobs get scheduled relative to the scheduler process start time . (applies for...

Simplified solution based on https://github.com/dbader/schedule/issues/248#issuecomment-432537674 is to use `hour` unit with minute offset ``` step = 15 # every x minutes for minute in range(0, 60, step): time = ":{minute:02d}".format(minute=minute)...