Exercise Configuration

Manage available exercises and their categories.

{% for exercise in exercises %} {{ render_partial('partials/exercise.html', exercise_id=exercise.exercise_id, name=exercise.name, attributes=exercise.attributes)}} {% endfor %}
Exercise Name

Add New Exercise

Create a new exercise with specific muscle groups and equipment.

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

Manage Categories & Options

Add or edit muscle groups, equipment types, and other exercise attributes.

{% for cat in categories_list %} {% set options = all_attributes.get(cat.name, []) %} {{ render_partial('partials/exercise/category_admin.html', category_id=cat.category_id, name=cat.name, attributes=options) }} {% endfor %}