Matthias Kestenholz

Results 228 comments of Matthias Kestenholz

If you search this page for `#:` you'll find examples: https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html#directive-autoproperty So, if the autodoc support is the only reason for converting the attribute to a property I think I'm...

Hi Thanks for the nice words! The problem is that we're interfering with some internal parts of the Django ORM when we assing our own `TreeQuery` as the query class...

Addendum: I wonder if you could keep it in the database by using a subquery. This seems to work nicely: ```python >>> Page.objects.filter(id__in=p.descendants(include_self=True).values("id")).update(title="blub") 11 ```

I have added tests which verify the behavior with `.descendants().update()` in 73ee469f0b54c8434172cb56d4e232818af6b76f It still doesn't work but at least we'll know if anything changes.

I have added an example to the docs describing how to work around this issue, and I'm going to close it as wontfix. I hope someone finds the time and...

I don't immediately have a good idea for this. Maybe you could try overriding `MoveForm.__init__` and add `self.fields["new_location"].choices = _generate_choices(self.get_queryset(self.request).filter(...your...filters...).with_tree_fields())` or something like that after `super.__init__()`? I'm happy to change...

Hi @benzkji Right now it's not possible. What we do instead is use subregions to automatically group related plugins (e.g. a list of images is automatically grouped into a gallery)...

> I don't really understand the second example. But if you say "I want to clean up the code and add section nesting to the CMS for those more advanced...

I'm not 100% certain it will happen but it's definitely something I want to do. Automatic grouping of plugins is nice, but a more explicit way to present it would...

Yes, I like that approach as well!