{% extends 'babybuddy/page.html' %} {% load datetime i18n widget_tweaks %} {% block title %}{% trans "Notes" %}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% trans "Notes" %} {% if perms.core.add_note %} {% trans "Add Note" %} {% endif %}

{% include 'babybuddy/filter.html' %}
{% if not unique_child %} {% endif %} {% for note in object_list %} {% if not unique_child %} {% endif %} {% empty %} {% endfor %}
{% trans "Actions" %} {% trans "Time" %}{% trans "Child" %}{% trans "Note" %} {% trans "Tags" %}
{% if perms.core.change_note %} {% endif %} {% if perms.core.delete_note %} {% endif %}
{{ note.time|datetime_short }}{{ note.child }}{{ note.note }} {% include "core/render_tag_list.html" with tags=note.tags.all %}
{% trans "No notes found." %}
{% include 'babybuddy/paginator.html' %} {% endblock %}