File: test_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 (10 lines) | stat: -rw-r--r-- 475 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
<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>
        <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>
</form>