{% extends "base.html" %} {% load i18n staticfiles wger_extras %} {% block title %}{% trans "Dashboard" %}{% endblock %} {% block header %} {% endblock %} {% block content %} {% if current_workout %} {% endif %}

{% trans "Workout"%}

{% if current_workout %}

{% if current_workout.comment %} {{ current_workout.comment }} {% else %} {% trans "Workout" %} {% endif %}

– {{ current_workout.creation_date }} {% if current_workout.day_set.all %}

{% trans "Add new log" %}

{% endif %} {% if schedule %}

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

{% endif %} {% else %} {# no workout #} {% trans "No workouts found." %} {% trans "Add one now." %} {% endif %}

{% trans "Nutrition plan"%}

{% if plan %}

{{ plan }}

– {{ plan.creation_date }} {% else %}

{% trans "No nutrition plans." %} {% trans "Add one now." %}

{% endif %} {% if weight %}

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

{% endif %}

{% trans 'Add workout' %} {% trans "Add workout" %}

{% trans 'Add nutrition plan' %} {% trans "Add nutrition plan" %}

{% endblock %} {% block sidebar %}

{% trans "Info" %}

{% blocktrans %}The current workout is selected from your active schedule or, if you don't have one, simply by date.{% endblocktrans %}

{% trans "After adding a workout or a nutritional plan, you can edit them to set a goal." %}

{% endblock %}