Matthias Kestenholz
Matthias Kestenholz
By the way, nested sections are now possible: https://406.ch/writing/django-content-editor-now-supports-nested-sections/
The feincms3 renderer now contains some code to handle these sections: https://github.com/feincms/feincms3/blob/cbb751558824a786b403864dd9518073c0d3506b/feincms3/renderer.py#L324-L363
> That said, we loosely look for >100 stars but make a few exceptions (rarely,
The same thing happened to us as well. `height:auto` was ordered after `height:calc(...)` after minimization instead of before. (`height:auto` shouldn't have been there in the first place, but the change...
Here's a minimal example showing the breakage: ```javascript import fs from "node:fs"; import { transform } from 'lightningcss'; let style = ` .navigation { height: auto; height: calc(100vh - var(--header-height,...
We have changed a problem with fetch in 5.1, see https://github.com/django-commons/django-debug-toolbar/pull/2101 Did it work with django-debug-toolbar 5.0.1? I think we have improved the state of things but of course something...
Hi @blingblin-g I wanted to ask if you still intend to work on this and/or if there's anything I can do to help get this moving?
Replaced by https://github.com/django-commons/django-debug-toolbar/pull/2153
Hi @blingblin-g Sure, I'd appreciate a review on the new PR over here: https://github.com/django-commons/django-debug-toolbar/pull/2153 I mostly only applied the suggested changes and submitted it myself again, still with you as...
You can do something like this by introducing your own `def clean()` method on nodes which checks for this. Of course this doesn't check anything on the database level, but...