{% extends "base.html" %} {% load i18n staticfiles wger_extras %} {% block title %}{% trans "Weight overview" %}{% endblock %} {% block header %} {% endblock %} {% block content %} {% if not min_date %}

{% trans "There is no chart here because there are no weight entries." %} {% trans "Use link to add one." %}

{% endif %}
{% if is_owner %} {% if last_five_weight_entries_details %} {% for entry_detail in last_five_weight_entries_details %} {% endfor %}
{% trans 'Date' %} {% trans 'Weight' %} {% trans 'Change' context "Noun, not verb" %} {% trans 'Days' %}
{{ entry_detail.0.date }} {{ entry_detail.0.weight }} {% if entry_detail.1 > 0 %} + {% endif %} {% if entry_detail.1 %} {{ entry_detail.1 }} {% else %} -/- {% endif %} {% if entry_detail.2 %} {{ entry_detail.2 }} {% else %} -/- {% endif %}
{% endif %}

{% trans "Add weight entry" %}

{% trans "You can click on a value on the chart to edit it. "%}

{% endif %} {% endblock %} {% block sidebar %}

{% trans "Filter options" %}

{% blocktrans %} Use the second chart to pan or zoom by clicking and dragging the selection. Clicking on the background resets it. {% endblocktrans %}

{% if is_owner %}

{% trans "Options" %}

{% trans 'Export as CSV' %} {% trans "Export as CSV" %}

{% trans 'Import from spreadsheet' %} {% trans "Import from spreadsheet" %}

{% endif %} {% endblock %}