mirror of https://github.com/snachodog/mybuddy.git
18 lines
408 B
HTML
18 lines
408 B
HTML
{% extends 'cards/base.html' %}
|
|
{% load duration i18n %}
|
|
|
|
{% block header %}{% trans "Today's Sleep" %}{% endblock %}
|
|
|
|
{% block title %}
|
|
{% if total %}
|
|
{{ total|duration_string }}
|
|
{% else %}
|
|
{% trans "None" %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if count > 0 %}
|
|
{% blocktrans %}{{ count }} sleep entries{% endblocktrans %}
|
|
{% endif %}
|
|
{% endblock %} |