{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% block title %}{% trans "Dashboard" %}{% endblock %} {% block content %}

{% trans "Current workout" %}

{% if current_workout %} {% if schedule %}

→ {% trans "This workout is part of a schedule:" %} {{schedule.name}}

{% endif %} {% endif %}

{% trans "Current nutrition plan" %}

{% if plan %} {% if weight %}

{% trans "Your current weight is: "%} {{weight.weight|floatformat}} kg.

{% endif %} {% endif %}
{% if not user.is_authenticated or user.userprofile.is_temporary %}

{% trans "You are using a guest account, data entered will be deleted after a week."%}

{% endif %}

{% trans "Start gym mode" %}

{% blocktrans %}Use the gym mode to start an interactive training session. If you enter lifted weights, they will be added to your workout log. A timer between sets helps you keep track of the pauses you do.{% endblocktrans %}

{% trans "Tip:" %} {% blocktrans %}You can deactivate the timer or set its default duration in your settings.{% endblocktrans %}

{% trans 'Start current workout' %}
{% trans "Start current workout" %}
{% if current_workout %} {{current_workout}}
{{current_workout}}
{% else %} {% trans 'Workout' %}
{% trans "Workout" %}
{% endif %}
{% trans 'Calendar' %}
{% trans "Calendar" %}
{% if plan %} {% trans 'Nutrition' %}
{{plan}}
{% else %} {% trans 'Workouts' %}
{% trans "Nutrition plan" %}
{% endif %}
{% trans 'Weight overview' %}
{% trans "Weight overview" %}
{% trans 'Preferences' %}
{% trans "Preferences" %}
{% trans 'Get in touch' %}
{% trans "Get in touch" %}
{% endblock %}