mybuddy/dashboard/templates/cards/diaperchange_last.html

16 lines
416 B
HTML
Raw Normal View History

2017-10-29 03:01:39 +00:00
{% extends 'cards/base.html' %}
{% load i18n %}
2017-08-18 15:00:58 +00:00
{% block header %}{% trans "Last Diaper Change" %}{% endblock %}
2017-08-18 15:00:58 +00:00
{% block title %}
{% if change %}
{% blocktrans with time=change.time|timesince %}{{ time }} ago{% endblocktrans %}
{% else %}
{% trans "Never" %}
{% endif %}
2017-08-18 15:00:58 +00:00
{% endblock %}
{% block content %}
{% if change %}{{ change.attributes|join:', ' }}{% endif %}
{% endblock %}