84 lines
4.3 KiB
HTML
84 lines
4.3 KiB
HTML
{% if offset == 0 %}
|
|
<div id="exercise-history-container"
|
|
class="w-full bg-gray-50 p-4 border-t border-gray-200 shadow-inner overflow-x-auto">
|
|
<div class="flex items-center justify-between sm:justify-center relative mb-1">
|
|
<div class="flex items-center justify-center gap-2 w-full">
|
|
<h4 class="text-l font-semibold text-blue-400">{{ title }}</h4>
|
|
<div hx-get="{{ url_for('workout.get_topset_achievements', person_id=person_id, workout_id=latest_workout_id, topset_id=latest_topset_id) }}"
|
|
hx-trigger="load" hx-target="this" hx-swap="innerHTML" class="flex items-center">
|
|
</div>
|
|
</div>
|
|
<div class="absolute right-0 z-10">
|
|
<button
|
|
class="inline-flex justify-center p-1 text-gray-500 rounded cursor-pointer hover:text-gray-900 hover:bg-gray-100"
|
|
title="Show Progress Graph"
|
|
hx-get="{{ url_for('get_exercise_progress_for_user', person_id=person_id, exercise_id=exercise_id) }}"
|
|
hx-target="#exercise-history-container" hx-swap="outerHTML">
|
|
<svg class="w-5 h-5 border border-gray-300 rounded p-0.5" fill="none" stroke="currentColor"
|
|
viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6"></path>
|
|
</svg>
|
|
<span class="sr-only">Show Progress Graph</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
{% if best_fit_formula %}
|
|
<h2 class="text-xs font-semibold text-blue-200 mb-4 text-center">
|
|
{{ best_fit_formula.kg_per_week }} kg/week, {{ best_fit_formula.kg_per_month }} kg/month
|
|
</h2>
|
|
{% else %}
|
|
<div class="mb-4"></div>
|
|
{% endif %}
|
|
<table class="w-full text-left text-sm text-gray-500">
|
|
<thead class="text-xs text-gray-700 uppercase bg-gray-100">
|
|
<tr>
|
|
<th scope="col" class="px-3 py-2">Date</th>
|
|
<th scope="col" class="px-3 py-2">Set & Achievements</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% endif %}
|
|
|
|
{% for topset in topsets %}
|
|
<tr class="border-b bg-white">
|
|
<td class="px-3 py-2 text-sm text-gray-900 whitespace-nowrap">
|
|
{{ topset.start_date | strftime }}
|
|
</td>
|
|
<td class="px-3 py-2 text-sm text-gray-900">
|
|
<div class="flex flex-wrap items-center gap-x-2 gap-y-1">
|
|
<span class="whitespace-nowrap">{{ topset.repetitions }} x {{ topset.weight }}kg</span>
|
|
<div hx-get="{{ url_for('workout.get_topset_achievements', person_id=person_id, workout_id=topset.workout_id, topset_id=topset.topset_id) }}"
|
|
hx-trigger="load" hx-target="this" hx-swap="innerHTML"
|
|
class="flex flex-wrap items-center gap-1">
|
|
<!-- Badges load here -->
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
{% if topsets|length == limit %}
|
|
<tr id="history-load-more-{{ source_topset_id }}-{{ offset + limit }}">
|
|
<td colspan="2" class="px-3 py-3 text-center">
|
|
<button
|
|
class="text-sm text-blue-600 hover:underline font-medium px-4 py-2 border border-blue-600 rounded"
|
|
hx-get="{{ url_for('workout.get_exercise_history', person_id=person_id, exercise_id=exercise_id, limit=limit, offset=offset + limit, source_topset_id=source_topset_id) }}"
|
|
hx-target="#history-load-more-{{ source_topset_id }}-{{ offset + limit }}" hx-swap="outerHTML">
|
|
Load More
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
{% elif topsets|length == 0 and offset == 0 %}
|
|
<tr>
|
|
<td colspan="2" class="px-3 py-4 text-center text-gray-500">
|
|
No history found.
|
|
</td>
|
|
</tr>
|
|
{% endif %}
|
|
|
|
{% if offset == 0 %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% endif %} |