{% extends "base.jinja2" %} {% block title %}{{ d.strftime("%B %Y") }} – {{ app_name }}{% endblock %} {% block content %}

{{ d.strftime("%B %Y") }}

{% if total_count > 0 %}

Showing results {{ page_n * 20 - 19 }} to {{ min(page_n * 20, total_count) }} of {{ total_count }} total.

{% else %}

{{ T('notes-month-empty') }}

{% endif %} {% set past_year = advance_calendar(d, -2) %} {% set past_month = advance_calendar(d, -1) %} {% set next_month = advance_calendar(d, 1) %} {% set next_year = advance_calendar(d, 2) %}

{{ T('back-to') }} {{ T('calendar') }}

{% endblock %}