{% extends 'cards/tummytime.html' %}
{% load duration %}

{% block header %}Last Tummy Time{% endblock %}

{% block title %}
    <strong>{{ tummytime.end|timesince }}</strong> ago
{% endblock %}

{% block content %}
    {{ tummytime.duration|duration_string }}
    {% if tummytime.milestone %}
        <br /> {{ tummytime.milestone }}
    {% endif %}
{% endblock %}