mirror of https://github.com/snachodog/mybuddy.git
18 lines
502 B
HTML
18 lines
502 B
HTML
{% extends 'cards/sleep.html' %}
|
|
{% load duration %}
|
|
|
|
{% block header %}Today's Naps <small><em>(7AM - 7PM)</em></small>{% endblock %}
|
|
|
|
{% block title %}
|
|
{% if count %}
|
|
<strong>{{ count }} naps</strong>
|
|
{% else %}
|
|
<i class="icon icon-sad" aria-hidden="true"></i>
|
|
<strong>None yet today</strong>
|
|
<i class="icon icon-sad" aria-hidden="true"></i>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ total.duration__sum|duration_string }} <br/>
|
|
{% endblock %} |