Add WIP of exercise live search, just testing speed in prod site

This commit is contained in:
Peter Stockings
2024-11-03 09:45:48 +11:00
parent 817a6016e2
commit e756607dc8
5 changed files with 27 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
{% for e in exercises %}
<option value="{{ e.exercise_id }}">{{
e.name
}}</option>
{% endfor %}

View File

@@ -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>