{% extends 'cards/base.html' %}
{% load duration %}
{% block header %}Today's Sleep{% endblock %}
{% block title %}
{% if total %}
{{ total|duration_string }}
{% else %}
None yet today
{% endif %}
{% endblock %}
{% block content %}
{% if count > 0 %}{{ count }} sleep entries{% endif %}
{% endblock %}