{% extends "layout.html" %} {% block content %}

Notes

{% if notes %}
{% for note in notes %}

{{ note.title }}

{% if note.visibility.value == 'Private' %}🔒{% elif note.visibility.value == 'Team' %}👥{% else %}🏢{% endif %} {{ note.visibility.value }} {% if note.updated_at > note.created_at %} Updated {{ note.updated_at|format_date }} {% else %} Created {{ note.created_at|format_date }} {% endif %}
{{ note.get_preview()|safe }}
View {% if note.can_user_edit(g.user) %} Edit
{% endif %}
{% endfor %}
{% else %}

No notes found. Create your first note.

{% endif %}
{% endblock %}