2017-10-29 03:01:39 +00:00
|
|
|
{% extends 'cards/base.html' %}
|
2017-09-13 14:31:56 +00:00
|
|
|
{% 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 %}
|
|
|
|
|
2017-10-28 00:12:39 +00:00
|
|
|
{% block content %}
|
|
|
|
{% if count > 0 %}{{ count }} sleep entries{% endif %}
|
|
|
|
{% endblock %}
|