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 %}
|
2017-09-15 16:29:56 +00:00
|
|
|
<i class="icon icon-sad" aria-hidden="true"></i>
|
2017-09-13 14:31:56 +00:00
|
|
|
<strong>None yet today</strong>
|
2017-09-15 16:29:56 +00:00
|
|
|
<i class="icon icon-sad" aria-hidden="true"></i>
|
2017-09-13 14:31:56 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2017-09-15 11:09:43 +00:00
|
|
|
{% 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 %}
|