François Poulain

Results 10 comments of François Poulain

Hi, > I think I've traced the problem to [contrib/taggit.py](https://github.com/wagtail/django-modelcluster/blob/master/modelcluster/contrib/taggit.py#L45), where the passed `tags` value is a tuple consisting of an empty FakeQuerySet instance, which raises a ValueError such as...

If that helps, the `SitePage(Page)`'s field `mots_cles` has been defined using: ```python mots_cles = ClusterTaggableManager( "Mots clés", through='MotsClesTag', blank=True, related_name='tags', ) ``` with ```python class MotsClesTag(TaggedItemBase): content_object = ParentalKey( 'SitePage',...

> ```python > default_exclude_fields_in_copy > ``` It seems that the stable interface is [`exclude_fields_in_copy`](https://docs.wagtail.io/en/stable/reference/pages/model_reference.html#wagtail.core.models.Page.exclude_fields_in_copy).

Hi, On some StructBlock I experience weird behavior with this titleTemplate. When I use integerfield as child, it takes it (the number) as a title ; which looks weird. ![capture...

> Anyway, note that now the default layout is SIMPLE, so the title will not really be a problem for most Wagtail beginner developers. I confirm. Upgrading my local version...

I am facing the same issue.

The problem is that `helpers.AdminErrorList` isn't builded to catch recursively errors (at arbitrary level) and it is not called with recursive formsets. Since `all_valid_with_nesting` is walking recursively formsets, I suggest...

My fix occurs in some private code but I simply redefined def `all_valid_with_nesting` in a subclass of `NestedModelAdmin` and added ```diff for form in formset: if hasattr(form, 'nested_formsets'): + if...

Same issue here: https://agir.april.org/issues/5168 Following https://unix.stackexchange.com/questions/574325/jitsi-videobridge-service-daemons-using-outdated-libraries we solved it with ``` $nrconf{blacklist_mappings} = [ […] # Videobridge qr(^/tmp/jna-), ``` in `/etc/needrestart/needrestart.conf`.

Bonjour, Je travaille bénévolement sur l'adoption du PCA dans Gnucash pour une asso. Personnellement je préfère l'option "actif positif" qui permet ainsi d'avoir un rapport de bilan qui colle à...