{% extends 'babybuddy/page.html' %} {% load i18n widget_tweaks %} {% block title %}{% trans "Weight" %}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% trans "Weight" %} {% if perms.core.add_weight %} {% trans "Add Weight" %} {% endif %}

{% include 'babybuddy/filter.html' %}
{% for weight in object_list %} {% cycle "odd" "even" as row_class silent %} {% if weight.notes %} {% endif %} {% empty %} {% endfor %}
{% trans "Child" %} {% trans "Weight" %} {% trans "Date" %} {% trans "Actions" %}
{{ weight.child }} {{ weight.weight }} {{ weight.date }}
{% if perms.core.change_weight %} {% endif %} {% if perms.core.delete_weight %} {% endif %}
{{ weight.notes }}
{% trans "No weight entries found." %}
{% include 'babybuddy/paginator.html' %} {% endblock %}