{% extends "base.html" %} {% load i18n static wger_extras %} {# #} {# Title #} {# #} {% block title %}{% trans "Weight overview" %}{% endblock %} {# #} {# Header #} {# #} {% block header %} {% endblock %} {# #} {# Content #} {# #} {% 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 %}{% 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 %} |