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