2017-10-29 03:01:39 +00:00
|
|
|
{% extends 'cards/base.html' %}
|
2019-04-14 15:40:08 +00:00
|
|
|
{% load duration i18n %}
|
2017-08-18 15:22:08 +00:00
|
|
|
|
2019-04-14 15:40:08 +00:00
|
|
|
{% block header %}{% trans "Last Tummy Time" %}{% endblock %}
|
2017-08-18 15:22:08 +00:00
|
|
|
|
|
|
|
{% block title %}
|
2017-10-28 00:12:39 +00:00
|
|
|
{% if tummytime %}
|
2019-04-15 01:41:25 +00:00
|
|
|
{% blocktrans with time=tummytime.time|timesince %}{{ time }} ago{% endblocktrans %}
|
2017-10-28 00:12:39 +00:00
|
|
|
{% else %}
|
2019-04-14 15:40:08 +00:00
|
|
|
{% trans "Never" %}
|
2017-10-28 00:12:39 +00:00
|
|
|
{% endif %}
|
2017-08-18 15:22:08 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2017-10-28 00:12:39 +00:00
|
|
|
{% if tummytime %}
|
|
|
|
{{ tummytime.duration|duration_string }}
|
|
|
|
{% if tummytime.milestone %}
|
|
|
|
<br /> {{ tummytime.milestone }}
|
|
|
|
{% endif %}
|
2017-10-24 00:07:45 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|