{% extends "base.html" %} {% load i18n %} {% load static %} {% block title %}{% translate "Your workouts" %}{% endblock %} {% block content %}
{% for workout in workouts %} {% if workout == current_workout %} {% translate "active" %} {% endif %}

{{ workout }}

{{ workout.creation_date }}

{% empty %} {% translate "No workouts found." %}
{% translate "Add one now." %}
{% endfor %}
{% endblock %} {% block options %} {% translate "Add workout" %} {% endblock %}