mirror of https://github.com/snachodog/mybuddy.git
17 lines
552 B
HTML
17 lines
552 B
HTML
{% extends 'cards/base.html' %}
|
|
{% load duration i18n %}
|
|
{% block header %}
|
|
<a href="{% url "core:sleep-list" %}">{% trans "Last Sleep" %}</a>
|
|
{% endblock %}
|
|
{% block title %}
|
|
{% if sleep %}
|
|
{% blocktrans trimmed with since=sleep.end|deltasince|duration_string:'m' time=sleep.end|time %}
|
|
<div>{{ since }} ago</div>
|
|
<small>{{ time }}</small>
|
|
{% endblocktrans %}
|
|
{% else %}
|
|
{% trans "None" %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block content %}{{ sleep.duration|duration_string }}{% endblock %}
|