Ben Dickinson
Ben Dickinson
I've just hit this issue too. I think the problem is in the `CoachAdmin.get_queryset` method: https://github.com/DjangoGirls/djangogirls/blob/master/coach/admin.py#L21 It's restricting you to viewing/editing coaches that are already linked from an `EventPageContent` object...
Thanks for getting back to me. I held off submitting a PR for this while I waited for some real webhook data to come through from our sandbox environment. It...
While working around this in my project, I found that we're missing `FakeQuerySet.iterator()` too. Here's my hack du jour that seems to be working nicely for the time being: ```python...
Intriguing idea, but I'm not clear what would need to be built into `wagtail-factories` to support this use case. At first glance, a lot of your example looks like it'd...
To do this properly, we could take a leaf out of `docker-compose`'s book and steal its `MergeDict` stuff: https://github.com/docker/compose/blob/df05472bcc6f1596e519a1e02f01cebd4e160011/compose/config/config.py#L984
I'm going to repoen this, as it's not a strict duplicate. This is concerning the hiding of _context_ values set in outer contexts by those set in included/extended template contexts,...
I've come across https://github.com/clarketm/mergedeep which might be useful here.
I've just hit this issue. I think as @m-aciek says, there's a documentation bug here. No code would need to change in Wagtail if we just documented that you need...
Hi @simkimsia, `tox_install.sh` is relic from before I knew `tox-poetry` existed. As that project is now deprecated in favour of Poetry's [built-in support](https://python-poetry.org/docs/faq/#is-tox-supported), I think the way forward here is...