{% extends 'base.html' %} {% block content %}

Users

{% for p in people %} {{ render_partial('partials/person.html', person_id=p['PersonId'], name=p['Name'])}} {% endfor %}
Name

Exercises

{% for exercise in exercises %} {{ render_partial('partials/exercise.html', exercise_id=exercise.exercise_id, name=exercise.name, attributes=exercise.attributes)}} {% endfor %}
Name Attributes
{% for cat_name, options in all_attributes.items() %}
{{ render_partial('partials/custom_select.html', name='attribute_ids', options=options, multiple=true, search=true, placeholder='Select ' ~ cat_name )}}
{% endfor %}

Data Export

Download all workout set data as a CSV file, or the entire database structure and data as an SQL script.

Export All Workouts (CSV) Export Database (SQL Script)
{% endblock %}