mirror of https://github.com/snachodog/mybuddy.git
18 lines
450 B
HTML
18 lines
450 B
HTML
{% extends 'cards/base.html' %}
|
|
{% load duration %}
|
|
|
|
{% block header %}Today's Sleep{% endblock %}
|
|
|
|
{% block title %}
|
|
{% if total %}
|
|
{{ total|duration_string }}
|
|
{% else %}
|
|
<i class="icon icon-sad" aria-hidden="true"></i>
|
|
None yet today
|
|
<i class="icon icon-sad" aria-hidden="true"></i>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if count > 0 %}{{ count }} sleep entries{% endif %}
|
|
{% endblock %} |