{% extends 'babybuddy/page.html' %} {% load cards i18n imagekit static %} {% block title %}{% trans "Dashboard" %}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% card_timer_list %}
{% for object in objects %}
{% if object.picture %} {% thumbnail '300x300' object.picture as thumb %} {% else %} {% endif %}

{{ object }}

{% trans "Born" %} {{ object.birth_date }}
{% trans "Age" %} {{ object.birth_date|timesince }}

{% include 'dashboard/child_button_group.html' %}
{% endfor %}
{% endblock %}