{% extends "base.html" %} {% block title %}knowledge — dossier{% endblock %} {% block content %}

knowledge

{{ note_count }} notes
search new note
{% if notes %}
{% for note in notes %} {% endfor %}
title author state verification updated
{{ note.title }} {{ note.actor_id }} {{ note.state }} {{ note.verification_status }} {{ format_timestamp(note.updated_at) }}
{% else %}
no knowledge notes
create a note to get started
{% endif %} {% endblock %}