2017-08-18 15:22:08 +00:00
|
|
|
{% extends 'cards/tummytime.html' %}
|
2017-08-20 14:04:20 +00:00
|
|
|
{% load duration %}
|
2017-08-18 15:22:08 +00:00
|
|
|
|
|
|
|
{% block header %}Last Tummy Time{% endblock %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
<strong>{{ tummytime.end|timesince }}</strong> ago
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="text-muted">
|
2017-08-19 20:46:50 +00:00
|
|
|
{{ tummytime.duration|duration_string }}
|
2017-08-18 15:22:08 +00:00
|
|
|
{% if tummytime.milestone %}
|
|
|
|
<br /> {{ tummytime.milestone }}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block footer %}{{ tummytime.end }}{% endblock %}
|