October feature list #226

Merged
tobru merged 36 commits from october into main 2025-10-22 13:43:34 +00:00
Showing only changes of commit 864c0ffc06 - Show all commits

View file

@ -330,7 +330,9 @@ class CrdModelFormMixin:
# Mark advanced fields with a CSS class and data attribute
advanced_fields = getattr(self, "ADVANCED_FIELDS", [])
for name, field in self.fields.items():
if name in advanced_fields:
if name in advanced_fields or any(
name.startswith(f"{af}.") for af in advanced_fields
):
field.widget.attrs.update(
{
"class": (