mybuddy/dashboard/templates/cards/sleep_last.html

17 lines
485 B
HTML

{% extends 'cards/base.html' %}
{% load duration i18n %}
{% block header %}{% trans "Last Sleep" %}{% endblock %}
{% block title %}
{% if sleep %}
{% 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 %}