mirror of https://github.com/snachodog/mybuddy.git
37 lines
1.4 KiB
HTML
37 lines
1.4 KiB
HTML
|
{% extends 'cards/base.html' %}
|
||
|
{% load duration i18n %}
|
||
|
{% block header %}
|
||
|
<a href="{% url "core:feeding-list" %}">{% trans "Breastfeeding" %}</a>
|
||
|
{% endblock %}
|
||
|
{% block title %}
|
||
|
{% if total == 0 %}
|
||
|
{% trans "None" %}
|
||
|
{% else %}
|
||
|
{% trans "Past Week" %}
|
||
|
{% endif %}
|
||
|
{% endblock %}
|
||
|
{% block content %}
|
||
|
{% for key, info in stats.items %}
|
||
|
{% if info.left_count > 0 or info.right_count > 0 %}
|
||
|
<div class="progress mt-3" role="progressbar">
|
||
|
<div class="progress-bar bg-primary lead"
|
||
|
style="width: {{ info.left_pct|safe }}%">{{ info.left_count }} {% trans "left" %}</div>
|
||
|
<div class="progress-bar bg-secondary lead"
|
||
|
style="width: {{ info.right_pct|safe }}%">{{ info.right_count }} {% trans "right" %}</div>
|
||
|
</div>
|
||
|
<div class="text-center text-light small">
|
||
|
{% if key == 0 %}
|
||
|
{% trans "today" %}
|
||
|
{% elif key == 1 %}
|
||
|
{% trans "yesterday" %}
|
||
|
{% else %}
|
||
|
{% blocktrans with days_ago=key %}{{ days_ago }} days ago{% endblocktrans %}
|
||
|
{% endif %}
|
||
|
{% if info.count > 0 %}
|
||
|
({{ info.count }} {% trans "feedings in" %} {{ info.duration|duration_string:'m' }})
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
{% endblock %}
|