torchbox / tbxforms

A Torchbox-flavoured template pack for django-crispy-forms, adapted from crispy-forms-gds.

Home Page:https://pypi.org/project/tbxforms/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Choices hints are never shown in Django 5.0+

RealOrangeOne opened this issue · comments

Django 5.0 added the option for form choices to be defined using enums. Unfortunately, this results in the values being normalised to a plain tuple, which loses the .hint attribute.

The normalisation doesn't happen in all cases, and there are fixed types which bypass it. Perhaps we can extend one of those for Choices to allow it to bypass normalisation.