2017-10-29 03:01:39 +00:00
|
|
|
{% extends 'cards/base.html' %}
|
2022-10-11 03:52:06 +00:00
|
|
|
{% load duration i18n %}
|
2021-08-04 20:36:00 +00:00
|
|
|
{% block header %}
|
2024-02-06 13:35:36 +00:00
|
|
|
<a href="{% url "core:feeding-list" %}">{% trans "Last Feeding" %}</a>
|
2021-08-04 20:36:00 +00:00
|
|
|
{% endblock %}
|
2017-08-18 14:32:17 +00:00
|
|
|
{% block title %}
|
2017-10-28 00:12:39 +00:00
|
|
|
{% if feeding %}
|
2022-10-11 03:52:06 +00:00
|
|
|
{% blocktrans trimmed with since=feeding.start|deltasince|duration_string:'m' time=feeding.start|time %}
|
2021-07-02 19:10:11 +00:00
|
|
|
<div>{{ since }} ago</div>
|
|
|
|
<small>{{ time }}</small>
|
2020-01-24 04:00:32 +00:00
|
|
|
{% endblocktrans %}
|
2017-10-28 00:12:39 +00:00
|
|
|
{% else %}
|
2020-02-15 21:48:17 +00:00
|
|
|
{% trans "None" %}
|
2017-10-28 00:12:39 +00:00
|
|
|
{% endif %}
|
2017-08-18 14:32:17 +00:00
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
2017-10-28 00:12:39 +00:00
|
|
|
{% if feeding %}
|
2019-11-09 22:05:55 +00:00
|
|
|
{{ feeding.get_type_display }}, {{ feeding.get_method_display }}
|
2024-02-06 13:35:36 +00:00
|
|
|
{% if feeding.amount %}({{ feeding.amount }}){% endif %}
|
2017-10-24 00:07:45 +00:00
|
|
|
{% endif %}
|
2019-08-22 23:54:48 +00:00
|
|
|
{% endblock %}
|