Add WIP of exercise live search, just testing speed in prod site
This commit is contained in:
5
templates/partials/exercise_dropdown.html
Normal file
5
templates/partials/exercise_dropdown.html
Normal file
@@ -0,0 +1,5 @@
|
||||
{% for e in exercises %}
|
||||
<option value="{{ e.exercise_id }}">{{
|
||||
e.name
|
||||
}}</option>
|
||||
{% endfor %}
|
||||
@@ -97,8 +97,11 @@
|
||||
</label>
|
||||
<input
|
||||
class="appearance-none block w-full bg-gray-200 text-gray-700 border border-gray-200 rounded py-3 px-4 leading-tight focus:outline-none focus:bg-white focus:border-gray-500"
|
||||
type="text" name="repetitions" </div>
|
||||
type="text" name="query" placeholder="Search exercises..." hx-get="{{ url_for('get_exercises') }}"
|
||||
hx-target="#exercise-results" hx-trigger="keyup changed delay:500ms" autocomplete="off">
|
||||
<div id="exercise-results">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user