{% extends "base.html" %} {% block title %}Search Notes{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Search Notes

{% if query %}

Results for "{{ query }}"

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

{{ note.title }}

{{ note.content|striptags|truncate(200) }}
{{ note.note_type|title }} Updated: {{ note.updated_at[:10] }}
{% endfor %}
{% else %}

No results found for "{{ query }}"

{% endif %} {% endif %}
{% endblock %}