mybuddy/dashboard/templates/cards/sleep_last.html

17 lines
485 B
HTML
Raw Normal View History

2017-10-29 03:01:39 +00:00
{% extends 'cards/base.html' %}
{% load duration i18n %}
{% block header %}{% trans "Last Sleep" %}{% endblock %}
{% block title %}
{% if sleep %}
2021-07-02 19:10:11 +00:00
{% blocktrans trimmed with since=sleep.end|timesince time=sleep.end|time %}
<div>{{ since }} ago</div>
<small>{{ time }}</small>
{% endblocktrans %}
{% else %}
{% trans "None" %}
{% endif %}
{% endblock %}
{% block content %}{{ sleep.duration|duration_string }}{% endblock %}