{% 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)}} {% endfor %}
Name

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 %}