File: test_grouped_checkboxes.html

package info (click to toggle)
python-crispy-bootstrap5 2024.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 664 kB
  • sloc: python: 1,949; sh: 6; makefile: 3
file content (27 lines) | stat: -rw-r--r-- 1,955 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<form method="post">
    <div class="mb-3" id="div_id_checkbox_select_multiple">
        <fieldset>
            <legend class="form-label requiredField">Checkbox select multiple<span class="asteriskField">*</span></legend>
            <div><strong>Audio</strong>
                <div class="form-check"><input class="form-check-input" id="id_checkbox_select_multiple_0_0"
                        name="checkbox_select_multiple" type="checkbox" value="vinyl"><label class="form-check-label"
                        for="id_checkbox_select_multiple_0_0">Vinyl</label></div>
                <div class="form-check"><input class="form-check-input" id="id_checkbox_select_multiple_0_1"
                        name="checkbox_select_multiple" type="checkbox" value="cd"><label class="form-check-label"
                        for="id_checkbox_select_multiple_0_1">CD</label></div><strong>Video</strong>
                <div class="form-check"><input class="form-check-input" id="id_checkbox_select_multiple_1_0"
                        name="checkbox_select_multiple" type="checkbox" value="vhs"><label class="form-check-label"
                        for="id_checkbox_select_multiple_1_0">VHS Tape</label></div>
                <div class="form-check"><input class="form-check-input" id="id_checkbox_select_multiple_1_1"
                        name="checkbox_select_multiple" type="checkbox" value="dvd"><label class="form-check-label"
                        for="id_checkbox_select_multiple_1_1">DVD</label></div>
                <div class="form-check"><input class="form-check-input" id="id_checkbox_select_multiple_2"
                        name="checkbox_select_multiple" type="checkbox" value="unknown"><label class="form-check-label"
                        for="id_checkbox_select_multiple_2">Unknown</label></div>
            </div>
            <div class="form-text">
                help
            </div>
        </fieldset>
    </div>
</form>