{% extends "base.html" %} {% block title %}Search Results - {{ config.BBS_NAME }}{% endblock %} {% block content %}

Search

{% if q %}
Results for: "{{ q }}"
Posts ({{ results.posts | length }})
{% if results.posts %} {% else %}

No posts found.

{% endif %}
Users ({{ results.users | length }})
{% if results.users %}
{% for user in results.users %} {{ user.username }} {% endfor %}
{% else %}

No users found.

{% endif %}
Boards ({{ results.boards | length }})
{% if results.boards %}
{% for board in results.boards %} {{ board.name }}

{{ board.description }}

{% endfor %}
{% else %}

No boards found.

{% endif %}
{% if results.echomail %}
Echomail ({{ results.echomail | length }})
{% endif %} {% if results.shouts %}
Shouts ({{ results.shouts | length }})
{% endif %} {% endif %} {% if not q %} {% endif %} {% endblock %}