mirror of https://github.com/snachodog/mybuddy.git
22 lines
460 B
HTML
22 lines
460 B
HTML
{% extends 'cards/base.html' %}
|
|
{% load duration i18n %}
|
|
|
|
{% block header %}
|
|
<a href="{% url "core:feeding-list" %}">
|
|
{% trans "Today's Feeding" %}
|
|
</a>
|
|
{% endblock %}
|
|
|
|
{% block title %}
|
|
{% if total %}
|
|
{{ total }}
|
|
{% else %}
|
|
{% trans "None" %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if count > 0 %}
|
|
{% blocktrans %}{{ count }} feeding entries{% endblocktrans %}
|
|
{% endif %}
|
|
{% endblock %} |