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

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

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

{% block content %}
    <div class="text-muted">
        {{ tummytime.duration|duration_string }}
        {% if tummytime.milestone %}
            <br /> {{ tummytime.milestone }}
        {% endif %}
    </div>
{% endblock %}

{% block footer %}{{ tummytime.end }}{% endblock %}