File: test_grouped_radios.html

package info (click to toggle)
python-crispy-bootstrap5 2025.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 724 kB
  • sloc: python: 2,035; sh: 6; makefile: 3
file content (19 lines) | stat: -rw-r--r-- 1,470 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<form method="post">
    <div class="mb-3" id="div_id_radio">
        <fieldset>
            <legend class="form-label fs-6 requiredField">Radio<span class="asteriskField">*</span></legend>
            <div><strong>Audio</strong>
                <div class="form-check"><input class="form-check-input" id="id_radio_0_0" name="radio" required type="radio"
                        value="vinyl"><label class="form-check-label" for="id_radio_0_0">Vinyl</label></div>
                <div class="form-check"><input class="form-check-input" id="id_radio_0_1" name="radio" required type="radio"
                        value="cd"><label class="form-check-label" for="id_radio_0_1">CD</label></div><strong>Video</strong>
                <div class="form-check"><input class="form-check-input" id="id_radio_1_0" name="radio" required type="radio"
                        value="vhs"><label class="form-check-label" for="id_radio_1_0">VHS Tape</label></div>
                <div class="form-check"><input class="form-check-input" id="id_radio_1_1" name="radio" required type="radio"
                        value="dvd"><label class="form-check-label" for="id_radio_1_1">DVD</label></div>
                <div class="form-check"><input class="form-check-input" id="id_radio_2" name="radio" required type="radio"
                        value="unknown"><label class="form-check-label" for="id_radio_2">Unknown</label></div>
            </div>
        </fieldset>
    </div>
</form>