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