mybuddy/dashboard/templates/cards/tummytime_last.html

19 lines
474 B
HTML
Raw Normal View History

{% extends 'cards/tummytime.html' %}
{% load duration %}
{% block header %}Last Tummy Time{% endblock %}
{% block title %}
<strong>{{ tummytime.end|timesince }}</strong> ago
{% endblock %}
{% block content %}
<div class="text-muted">
{{ tummytime.duration|duration_string }}
{% if tummytime.milestone %}
<br /> {{ tummytime.milestone }}
{% endif %}
</div>
{% endblock %}
{% block footer %}{{ tummytime.end }}{% endblock %}