Tonis Piip
Tonis Piip
Fix for issue #12 and likely #10 The issue is that if textarea / input isn't a direct child to the component it will send a react component to getCaretCoordinates...
When trying to crate a new page in the example django app in the project the following error happens. Seems to relate to the `FormChooserBlock` as when I comment out...
I tested the example project w/ version 3.0.3 and it seemed to work. tox ran and all tests passed. Was able to create a basic form, a page, publish the...
### Is your proposal related to a problem? label_format logic seems to be a little iffy, haven't look too far into it. But it's annoying me. https://github.com/wagtail/wagtail/pull/7509 ``` if (this.blockDef.meta.labelFormat)...
Using tailwind in django templates, so there's a lot of classes. It's easier to keep them broken into several lines for easier readability. ``` ``` Currently djlint will want to...
Due to the current way skip_hooks works, you need to pass it into save(), you can not suppress hooks in the case of using `model.objects.get_or_create`. You can't just pass in...
```python from dataclasses import dataclass from typing import List, Optional from django_lifecycle import BEFORE_CREATE, BEFORE_SAVE, BEFORE_UPDATE, LifecycleModel from django_lifecycle.decorators import HookConfig @dataclass(order=False) class UpdateFieldsHookConfig(HookConfig): # Is only required for a...
We want it so site admins can change the templates, but also we need localization. We've been using django model translations, which works quite well. Is there any plans to...
Hey, my project has been using this for a while, it's a neat app, but mainly it's being used to generate a changelog, so the the documented use-case, but that's...
from https://github.com/etianen/django-reversion/issues/957 > And also in the linked issue above, it was said it's a bad idea to exclude fields, but I wonder, where is that mentioned in the docs,...