{% extends "layout.html" %} {% macro render_folder_tree(tree, parent_path='') %} {% for folder_path, children in tree.items() %} {% set folder_name = folder_path.split('/')[-1] %} {% set is_active = folder_filter == folder_path %}
Organize your thoughts and documentation
{{ note.get_preview(150) }}
{% if note.tags %} {% endif %}| Title | Folder | Tags | Visibility | Author | Updated | Actions |
|---|---|---|---|---|---|---|
| {% if note.is_pinned %}{% endif %} {{ note.title }} | {{ note.folder or '-' }} | {% if note.tags %} {% for tag in note.get_tags_list() %} {{ tag }} {% endfor %} {% else %} - {% endif %} | {% if note.visibility.value == 'Private' %}{% elif note.visibility.value == 'Team' %}{% else %}{% endif %} {{ note.visibility.value }} | {{ note.created_by.username }} | {{ note.updated_at.strftime('%b %d, %Y') }} | View {% if note.can_user_edit(g.user) %} Edit {% endif %} |
{% if folder_filter or tag_filter or visibility_filter or search_query %} No notes match your current filters. Try adjusting your search criteria. {% else %} Start documenting your knowledge by creating your first note. {% endif %}
Create Your First Note