{% extends "base.html" %} {% from "macros.html" import diagram, workouts_table with context %} {% block title %}{{ exercise }} - Exercise{% endblock %} {% block content_title %}{{ exercise }}{% endblock %} {% block content %} {{ diagram('exercise', intervals, current, exercise) }}
{{ workouts_table(workouts) }}
{% endblock %} {% set parent_page = 'exercises_view' %}