{% extends "base.html" %} {% block title %} Search Results for "{{ query }}" {% endblock title %} {% block content %}

Search Results for "{{ query }}"

{% if not results.organizations and not results.games and not results.campaigns and not results.drops and not results.benefits %}

No results found.

{% else %} {% if results.organizations %}

Organizations

{% endif %} {% if results.games %}

Games

{% endif %} {% if results.campaigns %}

Campaigns

{% endif %} {% if results.drops %}

Drops

{% endif %} {% if results.benefits %}

Benefits

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