Andy Ingram

Results 23 comments of Andy Ingram

What about with the form hook?

FWIW, for my current use case, we don't know the URL up front, we call the 3rd party in the post handler and it gives us back the URL to...

@Melzmr I think @gbouteiller was looking for ways to specify crop parameters at the URI-level. eg if I have a responsive background image in a hero section, I want to...

Is this a shortcoming in using model formsets in general, or just the way the admin does it?

Seems like my ModelFormSetView in django-extra-views (which we already have as a dependency) will do most of the work for us then. The current blocker is that Django's existing CBVs...

We can address the performance issue by being dogmatic and only allowing next/previous pagination and using the greater-than trick.

You might want to look at how django-oscar (https://github.com/tangentlabs/django-oscar) handles model overrides, it works pretty effectively.

You can't, and it's unlikely you'll be able to. 1. The inlines in `django.contrib.contenttypes.generic` are written for the old admin, admin2 is using completely different code. Whilst the API is...

We only avoid the full waterfall if there isn't *additional* code-splitting within the tree of the route component themselves. With some of the new `@match` stuff that's coming in Relay,...

Yeah, i'm less fussed about waterfalls further down, more concerned with the router part for now.