mybuddy/dashboard/templates/cards/sleep_day.html

24 lines
652 B
HTML
Raw Normal View History

2017-09-13 14:31:56 +00:00
{% extends 'cards/sleep.html' %}
{% load duration %}
{% block header %}Today's Sleep{% endblock %}
{% block title %}
{% if total %}
<strong>{{ total|duration_string }}</strong>
{% else %}
<i class="icon icon-sad" aria-hidden="true"></i>
2017-09-13 14:31:56 +00:00
<strong>None yet today</strong>
<i class="icon icon-sad" aria-hidden="true"></i>
2017-09-13 14:31:56 +00:00
{% endif %}
{% endblock %}
{% block content %}
{% if total %}
<div class="text-muted">
Average sleep duration: <strong>{{ average|duration_string }}</strong>.
</div>
{% endif %}
2017-09-13 14:31:56 +00:00
{% endblock %}
{% block footer %}{{ count }} sleep entries{% endblock %}