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

search knowledge

{{ result_count }} results for "{{ query }}"
{% if results %}
{% for note in results %} {% endfor %}
title author state updated
{{ note.title }} {{ note.actor_id }} {{ note.state }} {{ format_timestamp(note.updated_at) }}
{% else %} {% if query %}
no results for "{{ query }}"
try a different search term
{% else %}
enter a search query
search across all knowledge notes
{% endif %} {% endif %} {% endblock %}