mybuddy/dashboard/templates/cards/sleep_day.html

18 lines
450 B
HTML
Raw Normal View History

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 %}
2017-10-30 23:35:51 +00:00
{{ total|duration_string }}
2017-09-13 14:31:56 +00:00
{% else %}
<i class="icon icon-sad" aria-hidden="true"></i>
2017-10-30 23:35:51 +00:00
None yet today
<i class="icon icon-sad" aria-hidden="true"></i>
2017-09-13 14:31:56 +00:00
{% endif %}
{% endblock %}
{% block content %}
{% if count > 0 %}{{ count }} sleep entries{% endif %}
{% endblock %}