Ernesto Chavez Sanchez

Results 10 comments of Ernesto Chavez Sanchez

I had the same issue and following @Angel0fDarkness suggestion fixed it for me.

I was having the same issue, what did solve it though was loading PIE (v1.0.0) through modernizr.load (v2.6.2) and right after that load respond.js (v1.1.0) within an IE conditional. I...

+1 for containerized environments to work properly.

I managed to get through this by running a background deploy after my scrapyd instance has started. Not sure it's the best way but it works for me now Dockerfile...

Weird though with v1.2.0 that I'm using and stripe v2018-05-21 I do see it get updated via webhooks. I'm using a OneToOne model to attach this property only and I...

Gotcha, I'll try to see if that's still true and get back to you, otherwise I'll use your snippet instead, thanks

I have the same issue but managed to work around it by ```python class Application(containers.DeclarativeContainer): settings = providers.ThreadSafeSingleton(Settings) ``` This works, although I would prefer to get the pydantic object...

If old browser support is not required you could add it as a button in your model admin as: ``` list_display = UserAdmin.list_display + ('button',) def button(self, obj): return format_html(mark_safe("""...

If using ```formaction``` is acceptable I could issue a PR for this.