Add cursor pointer to workout rows in list view

This commit is contained in:
Peter Stockings
2022-12-04 21:26:52 +11:00
parent 14e5195d37
commit 26020f2eeb

View File

@@ -110,7 +110,7 @@
{% for w in person['Workouts'] %}
<tr hx-get="{{ url_for('get_workout_modal', person_id=person['PersonId'], workout_id=w['WorkoutId']) }}"
hx-target='body' hx-swap='beforeend'>
hx-target='body' hx-swap='beforeend' class="cursor-pointer">
<td class="p-4 whitespace-nowrap text-sm font-normal text-gray-500">
{{ strftime(w['StartDate'], "%b %d %Y") }}
</td>