188 lines
10 KiB
HTML
188 lines
10 KiB
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="flex max-w-full overflow-x-hidden">
|
|
<div class="bg-white shadow rounded-lg pt-2 pb-2 sm:w-full xl:p-8 md:w-full">
|
|
|
|
<div class="mb-4 flex items-center justify-between px-2 md:px-3">
|
|
<div>
|
|
<h3 class="text-xl font-bold text-gray-900 mb-2">{{ person_name }}</h3>
|
|
<span class="text-base font-normal text-gray-500">List of workouts</span>
|
|
</div>
|
|
<div>
|
|
<div>
|
|
<select name="view" hx-get="{{ url_for('calendar.get_calendar', person_id=person_id) }}"
|
|
hx-target="#container" hx-push-url="true" _="init js(me) tail.select(me, {}) end"
|
|
class="h-10 invisible">
|
|
<option value="month">Month</option>
|
|
<option value="year">Year</option>
|
|
<option value="notes">Notes</option>
|
|
<option value="overview" selected>Overview</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex flex-wrap mb-1">
|
|
<div class="w-full md:w-1/3 px-2 md:px-3 mb-6 md:mb-0">
|
|
<div class="mb-1 w-full">
|
|
<label class="block uppercase tracking-wide text-gray-700 text-xs font-bold mb-2" for="grid-city">
|
|
Exercises
|
|
</label>
|
|
<select data-te-select-filter="true" data-te-select-size="lg" name="exercise_id"
|
|
class="bg-gray-50 border border-gray-300 " multiple
|
|
hx-get="{{ url_for('person_overview', person_id=person_id) }}"
|
|
hx-include="[name='exercise_id'],[name='min_date'],[name='max_date'],[name='graph_axis']"
|
|
hx-target="#container" hx-push-url="true" _="init js(me)
|
|
tail.select(me, {
|
|
multiple: true,
|
|
search: true,
|
|
placeholder: 'Filter exercises',
|
|
})
|
|
end">
|
|
{% for exercise in exercises %}
|
|
<option value="{{ exercise.id }}" {% if exercise.selected %}selected{% endif %}>
|
|
{{ exercise.name }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="w-full md:w-1/3 px-2 md:px-3 mb-6 md:mb-0">
|
|
<label class="block uppercase tracking-wide text-gray-700 text-xs font-bold mb-2" for="grid-city">
|
|
Min date
|
|
</label>
|
|
<div class="relative pr-2">
|
|
<div class="flex absolute inset-y-0 left-0 items-center pl-3 pointer-events-none">
|
|
<svg aria-hidden="true" class="w-5 h-5 text-gray-500 dark:text-gray-400" fill="currentColor"
|
|
viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
<path fill-rule="evenodd"
|
|
d="M6 2a1 1 0 00-1 1v1H4a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-1V3a1 1 0 10-2 0v1H7V3a1 1 0 00-1-1zm0 5a1 1 0 000 2h8a1 1 0 100-2H6z"
|
|
clip-rule="evenodd"></path>
|
|
</svg>
|
|
</div>
|
|
<input type="date"
|
|
class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full pl-10 p-2.5 w-full"
|
|
name="min_date" value="{{ min_date }}"
|
|
hx-get="{{ url_for('person_overview', person_id=person_id) }}"
|
|
hx-include="[name='exercise_id'],[name='min_date'],[name='max_date'],[name='graph_axis']"
|
|
hx-target="#container" hx-push-url="true" hx-trigger="change">
|
|
</div>
|
|
</div>
|
|
<div class="w-full md:w-1/3 px-2 md:px-3 mb-6 md:mb-0">
|
|
<label class="block uppercase tracking-wide text-gray-700 text-xs font-bold mb-2" for="grid-zip">
|
|
Max date
|
|
</label>
|
|
<div class="relative pr-2">
|
|
<div class="flex absolute inset-y-0 left-0 items-center pl-3 pointer-events-none">
|
|
<svg aria-hidden="true" class="w-5 h-5 text-gray-500 dark:text-gray-400" fill="currentColor"
|
|
viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
<path fill-rule="evenodd"
|
|
d="M6 2a1 1 0 00-1 1v1H4a2 2 0 00-2 2v10a2 2 0 002 2h12a2 2 0 002-2V6a2 2 0 00-2-2h-1V3a1 1 0 10-2 0v1H7V3a1 1 0 00-1-1zm0 5a1 1 0 000 2h8a1 1 0 100-2H6z"
|
|
clip-rule="evenodd"></path>
|
|
</svg>
|
|
</div>
|
|
<input type="date"
|
|
class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full pl-10 p-2.5 w-full"
|
|
name="max_date" value="{{ max_date }}"
|
|
hx-get="{{ url_for('person_overview', person_id=person_id) }}"
|
|
hx-include="[name='exercise_id'],[name='min_date'],[name='max_date'],[name='graph_axis']"
|
|
hx-target="#container" hx-push-url="true" hx-trigger="change">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="tags-container">
|
|
{{ render_partial('partials/tags.html', person_id=person_id, tags=tags) }}
|
|
</div>
|
|
|
|
<div class="hidden" hx-get="{{ url_for('get_people_graphs') }}"
|
|
hx-include="[name='exercise_id'],[name='min_date'],[name='max_date']"
|
|
hx-vals='{"person_id": "{{ person_id }}"}' hx-trigger="load" hx-target="this" hx-swap="outerHTML">
|
|
</div>
|
|
|
|
<div class="mt-4 mb-4 w-full grid grid-cols-1 2xl:grid-cols-2 gap-4">
|
|
{% for graph in exercise_progress_graphs %}
|
|
{{ render_partial('partials/sparkline.html', **graph.progress_graph) }}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<div class="flex flex-col mt-3 w-screen sm:w-full overflow-auto">
|
|
<div class="overflow-x-auto rounded-lg">
|
|
<div class="flex justify-center">
|
|
<div class="flex justify-center shadow sm:rounded-lg w-screen sm:w-screen">
|
|
|
|
{% if workouts|length > 0 %}
|
|
<table class="min-w-content divide-y divide-gray-200">
|
|
<thead class="bg-gray-50">
|
|
<tr>
|
|
<th scope="col"
|
|
class="p-4 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
|
Date
|
|
</th>
|
|
{% for exercise in selected_exercises %}
|
|
<th scope="col"
|
|
class="p-4 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
|
{{ exercise.name }}
|
|
</th>
|
|
{% endfor %}
|
|
</tr>
|
|
</thead>
|
|
<tbody class="bg-white">
|
|
|
|
{% for workout in workouts %}
|
|
<tr hx-get="{{ url_for('workout.show_workout', person_id=person_id, workout_id=workout.id) }}"
|
|
hx-push-url="true" hx-target="#container" class="cursor-pointer">
|
|
<td class="p-4 whitespace-nowrap text-sm font-normal text-gray-500">
|
|
{{ workout.start_date | strftime("%b %d %Y") }}
|
|
</td>
|
|
|
|
{% for exercise in selected_exercises %}
|
|
<td class="p-4 whitespace-nowrap text-sm font-semibold text-gray-900">
|
|
{% for set in workout.exercises[exercise.id] %}
|
|
{{ set.repetitions }} x {{ set.weight }}kg
|
|
{% endfor %}
|
|
</td>
|
|
{% endfor %}
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
</table>
|
|
{% endif %}
|
|
|
|
{% if workouts|length == 0 %}
|
|
<div class="bg-purple-100 rounded-lg py-5 px-6 mb-4 text-base text-purple-700 mb-3"
|
|
role="alert">
|
|
No workouts found.
|
|
</div>
|
|
{% endif %}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="hidden" hx-get="{{ url_for('get_stats') }}"
|
|
hx-include="[name='exercise_id'],[name='min_date'],[name='max_date']" hx-vals='{"person_id": "{{ person_id }}"}'
|
|
hx-trigger="load" hx-target="#stats" hx-swap="innerHTML">
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
{% block add_workout_button %}
|
|
<button
|
|
class="fixed z-90 bottom-10 right-8 bg-blue-600 w-20 h-20 rounded-full drop-shadow-lg flex justify-center items-center text-white text-4xl hover:bg-blue-700 hover:drop-shadow-2xl hover:animate-bounce duration-300"
|
|
hx-post="{{ url_for('workout.create_workout', person_id=person_id) }}" hx-push-url="true" hx-target="#container">
|
|
<svg viewBox="0 0 20 20" enable-background="new 0 0 20 20" class="w-6 h-6 inline-block">
|
|
<path fill="#FFFFFF" d="M16,10c0,0.553-0.048,1-0.601,1H11v4.399C11,15.951,10.553,16,10,16c-0.553,0-1-0.049-1-0.601V11H4.601
|
|
C4.049,11,4,10.553,4,10c0-0.553,0.049-1,0.601-1H9V4.601C9,4.048,9.447,4,10,4c0.553,0,1,0.048,1,0.601V9h4.399
|
|
C15.952,9,16,9.447,16,10z" />
|
|
</svg>
|
|
</button>
|
|
|
|
{% endblock %} |