Changes between Version 1 and Version 2 of Ticket #32338


Ignore:
Timestamp:
Jan 10, 2021, 9:52:43 AM (3 years ago)
Author:
Thibaud Colas
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32338 – Description

    v1 v2  
    1313Here is a screenshot demonstrating the label issue with macOS VoiceOver’s rotor. Note how the first field has the wrong label due to the markup.
    1414
    15 [[Image(https://code.djangoproject.com/attachment/ticket/32338/radio-select-first-input-label.png)]]
     15[[Image(https://code.djangoproject.com/raw-attachment/ticket/32338/radio-select-first-input-label.png)]]
    1616
    1717== CheckboxSelectMultiple issues
     
    3333Here is sample markup to implement the above. The `div` aren’t needed, I’ve only added them to preserve the vertical layout of the current implementation:
    3434
    35 {{{#!html
     35{{{
    3636<fieldset>
    3737    <legend>Radio choice required:</legend>
     
    4444    <div><label for="id_radio_choice_required_3"><input type="radio" name="radio_choice_required" value="four" required="" id="id_radio_choice_required_3">
    4545 Four</label></div>
    46 <span class="helptext">Help</span>
     46    <span class="helptext">Help</span>
    4747</fieldset>
    4848}}}
Back to Top