mirror of https://github.com/snachodog/mybuddy.git
18 lines
543 B
HTML
18 lines
543 B
HTML
{% extends 'cards/base.html' %}
|
|
{% load duration i18n %}
|
|
|
|
{% block header %}{% trans "Today's Naps" %}{% endblock %}
|
|
|
|
{% block title %}
|
|
{% if count %}
|
|
{% blocktrans 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 %} |