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

{{ workout }}

{{ workout.creation_date }}

{% empty %} {% trans "No workouts found." %}
{% trans "Add one now." %}
{% endfor %}
{% endblock %} {% block sidebar %}

{% trans "Add workout" %}

{% endblock %}