File: test_prepended_appended_select.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 (35 lines) | stat: -rw-r--r-- 1,890 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
28
29
30
31
32
33
34
35
<form method="post">
    <div id="div_id_select_input" class="mb-3"> <label for="id_select_input" class="form-label requiredField"> Select
            input<span class="asteriskField">*</span> </label>
        <div>
            <div class="input-group"> <span class="input-group-text">bar</span> <select name="select_input"
                    class="select form-select" id="id_select_input">
                    <option value="1">Option one</option>
                    <option value="2">Option two</option>
                    <option value="3">Option three</option>
                </select> </div>
        </div>
    </div>
    <div id="div_id_select_input" class="mb-3"> <label for="id_select_input" class="form-label requiredField"> Select
            input<span class="asteriskField">*</span> </label>
        <div>
            <div class="input-group"> <select name="select_input" class="select form-select"
                    id="id_select_input">
                    <option value="1">Option one</option>
                    <option value="2">Option two</option>
                    <option value="3">Option three</option>
                </select> <span class="input-group-text">bar</span> </div>
        </div>
    </div>
    <div id="div_id_select_input" class="mb-3"> <label for="id_select_input" class="form-label requiredField"> Select
            input<span class="asteriskField">*</span> </label>
        <div>
            <div class="input-group"> <span class="input-group-text">£</span> <select name="select_input"
                    class="select form-select" id="id_select_input">
                    <option value="1">Option one</option>
                    <option value="2">Option two</option>
                    <option value="3">Option three</option>
                </select> <span class="input-group-text">.00</span> </div>
        </div>
    </div>
</form>