{% load i18n %}{% load humanize %}{% load pagination_tags %} {% if notebook %}

{% trans "All notes for" %} {{ notebook.get_name_for_display }}

{% endif %} {% autopaginate notes %} {% for note in notes %} {% if note.pinned %} {% else %} {% endif %} {% endfor %} {% ifnotequal paginator.num_pages 1 %} {% else %} {% endifnotequal %}
{% trans "Title" %} {% trans "Last Modified" %} {% trans "Visibility" %}
PinnedNot pinned{{ note.title|safe }} {{ note.user_modified|naturalday|title }} {{ note.get_permissions_display }}
{% paginate %}{% blocktrans count paginator.count as c %}{{ c }} result found{% plural %}{{ c }} results found{% endblocktrans %}