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

{{ workout }}

{{ workout.creation_date }}

{% empty %} {% if template_overview %} {% translate "No templates found." %} {% else %} {% translate "No workouts found." %}
{% translate "Add one now." %}
{% endif %} {% endfor %}
{% endblock %} {% block options %} {% if not template_overview %} {% translate "Add workout" %} {% endif %} {% endblock %}