You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RadioSelect in Django 3.2 renders as <li> elements. We probably don't want that? Should we add something to page.html so that we have more granular control over how radio buttons are shown? (Django docs have an example of looping over the widgets.)
<!--Bootstrap4 Custom Radios--><divclass="form-check"><inputclass="form-check-input" type="radio" name="flexRadioDefault" id="customRadio1"><labelclass="form-check-label" for="customRadio1">
Toggle this custom radio
</label></div><divclass="form-check"><inputclass="form-check-input" type="radio" name="flexRadioDefault" id="customRadio2" checked=""><labelclass="form-check-label" for="customRadio2">
Or toggle this other custom radio
</label></div>
This is a follow-on to #322, to enhance how forms are rendered in the
page
template@angela-tran notes:
The State Template form components has some example HTML for what might work here?
The comment indicates this is just Bootstrap 4 radios?
@angela-tran suggests:
The text was updated successfully, but these errors were encountered: