Eduard Luca

Results 7 comments of Eduard Luca

This should not come as a separate feature, because you can already achieve this with a header, like @dgmike said in his previous comment.

While it's a nice feature, it's actually pretty easy to implement yourself. Managed to get this working with ~15 lines of code (on the X axis only; Y axis should...

I am checking whether `request.retries` is set in the worker, and if not, I set it to 0. My worker is Python, so I have: if self.request.retries is None: self.request.retries...

For those still struggling with this, I've found a workaround. You will need to override the `get` method on the custom search view: def get(self, request, *args, **kwargs): self.term, self.model_admin,...

A somewhat better option is to use the `collectstatic -l` built-in flag so that collectstatic creates the symlinks to each file individually, as opposed to the developer symlinking the whole...

@AlexSin15 I tried that, but if I do it like that, when clicking (ie. focusing) the input, nothing happens except that the arrow disappears, but there is no focus on...