{% extends "base.html" %} {% block title %}Search Results{% endblock %} {% block content %}
{% if error %}
{{ error }}
{% elif results %} {% for result in results %}
{{ result.room_name }}
{{ result.room_title or "No title" }}
Score: {{ result.score }}

{% endfor %} {% else %}
No results found.
{% endif %}
{% endblock %}