mirror of https://github.com/snachodog/mybuddy.git
18 lines
433 B
HTML
18 lines
433 B
HTML
{% 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 %} |