{% extends 'cards/feeding.html' %}

{% block header %}Last Feeding{% endblock %}

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

{% block content %}
    <div class="text-muted">
        {{ feeding.type }}, {{ feeding.method }}
        {% if feeding.amount %}
            , {{ feeding.amount }}oz.
        {% endif %}
    </div>
{% endblock %}

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