mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2026-02-04 09:14:30 +00:00
13 lines
610 B
HTML
13 lines
610 B
HTML
<div class="card">
|
|
<div class="card-body">
|
|
<h5 class="card-title">Spot Age</h5>
|
|
<p class="card-text spothole-card-text">Last
|
|
<select id="max-spot-age" class="storeable-select form-select ms-2 me-2 d-inline-block" oninput="filtersUpdated();" style="width: 5em; display: inline-block;">
|
|
{% for a in web_ui_options["max-spot-age"] %}
|
|
<option value="{{a*60}}" {% if web_ui_options["max-spot-age-default"] == a*60 %}selected{% end %}>{{a}}</option>
|
|
{% end %}
|
|
</select>
|
|
minutes
|
|
</p>
|
|
</div>
|
|
</div> |