Files
cardio/templates/users_and_workouts_wrapper.html
2023-03-30 11:32:37 +11:00

9 lines
220 B
HTML

{% for u in users %}
{% with user=u, workouts=u.workouts, bikes=bikes %}
{% include 'workouts_list.html' %}
{% endwith %}
{% endfor %}
{% with users=users, bikes=bikes %}
{% include 'users.html' %}
{% endwith %}