{% if title != 'Anno' %}
Anno - {{ title }}
{% else %}
{{ title }}
{% endif %} {% include 'flashes.html' %} {% if show_home_btn %}
Home
{% else %}
Create note
{% endif %}
{{ title }}
{% if notes %}
{% for item in notes %}
{{ item.date | date_to_string }}
{{ item.title }}
{% if item.labels %}
{% for label in item.labels %}
{{ label }}
{% endfor %}
{% else %}
{% endif %}
{% endfor %}
{% else %} {{ no_notes_msg }} {% endif %}