mirror of https://github.com/snachodog/mybuddy.git
20 lines
573 B
HTML
20 lines
573 B
HTML
{% extends 'cards/base.html' %}
|
|
{% load duration i18n %}
|
|
|
|
{% block header %}{% trans "Today's Naps" %}{% endblock %}
|
|
|
|
{% block title %}
|
|
{% if count %}
|
|
{% blocktrans trimmed with plural=count|pluralize %}
|
|
{{ count }} nap{{ plural }}
|
|
{% endblocktrans %}
|
|
{% else %}
|
|
<i class="icon icon-sad" aria-hidden="true"></i>
|
|
{% trans "None yet today" %}
|
|
<i class="icon icon-sad" aria-hidden="true"></i>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if total %}{{ total|duration_string }}{% endif %}
|
|
{% endblock %} |