{% extends "base.html" %} {% load custom_date %} {% block title %}Search - {{ block.super }}{% endblock %} {% block extra_head %} {{ block.super}} {% endblock %} {% block content %}

Search

The search only matches complete words. Case is ignored.

{% for error in search_form.search.errors %}

{{ error }}

{% endfor %} {{ search_form.search }}
{{ search_form.incl_wiki }} {{ search_form.incl_help }} {{ search_form.incl_forum }} {{ search_form.incl_maps }} {{ search_form.incl_news }} {% csrf_token %}
{% if post %}

Results

{# Wiki #} {% if wiki_results.count %}

Wiki

{% endif %} {# Encylcopedia #} {% if wlhelp_hits %}

Encyclopedia

{% if wlhelp_results_buildings.count %}

Buildings

{% endif %} {% if wlhelp_results_wares.count %}

Wares

{% endif %} {%endif %} {# Forum #} {% if forum_hits %}

Forum

{% if forum_results_topic.count %}

Topics

{%endif %} {% if forum_results_post.count %}

Posts

{% endif %} {% endif %} {# Maps #} {% if map_results.count %}

Maps

{% endif %} {# News #} {% if news_results.count %}

News results

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