mirror of https://github.com/snachodog/mybuddy.git
21 lines
471 B
HTML
21 lines
471 B
HTML
{% extends 'cards/base.html' %}
|
|
{% load duration %}
|
|
|
|
{% block header %}Last Tummy Time{% endblock %}
|
|
|
|
{% block title %}
|
|
{% if tummytime %}
|
|
{{ tummytime.time|timesince }} ago
|
|
{% else %}
|
|
Never
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if tummytime %}
|
|
{{ tummytime.duration|duration_string }}
|
|
{% if tummytime.milestone %}
|
|
<br /> {{ tummytime.milestone }}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endblock %} |