mirror of https://github.com/snachodog/mybuddy.git
14 lines
326 B
HTML
14 lines
326 B
HTML
{% extends 'cards/feeding.html' %}
|
|
|
|
{% block header %}Last Feeding{% endblock %}
|
|
|
|
{% block title %}
|
|
<strong>{{ feeding.end|timesince }}</strong> ago
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ feeding.type }}, {{ feeding.method }}
|
|
{% if feeding.amount %}
|
|
, {{ feeding.amount }}oz.
|
|
{% endif %}
|
|
{% endblock %} |