{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% load wger_extras %} {% block title %}{% trans "Workout log calendar" %}{% endblock %} {% block header %} {% endblock %} {% block content %} {{calendar|safe}} {% for date in logs %} {% regroup logs|get_item:date by exercise as grouped_logs %} {# #} {# Popups to edit or delete the logs #} {# #} {% for i in grouped_logs %} {% for log in i.list %}
{% trans "Time" %}:
{% if session.time_start %}
{{session.time_start|time:"H:i"}} - {{session.time_end|time:"H:i"}}
{% else %}
-/-
{% endif %}
{% trans "General impression" %}: {% trans session.get_impression_display %}
{% trans "Notes" %}: {{session.notes|default:'-/-'}}
{% blocktrans %}Click to add weight logs to a training day in your current workout:{% endblocktrans %} {{current_workout}}
{% trans "No workouts found." %}
{% blocktrans %}The coloured days in the calendar have weight logs, you can click on them to see the details.{% endblocktrans %}