{% extends "ToDo/base.html" %} {% block content %} {% load crispy_forms_tags %} {% load filename %}
Search everything... {{ search_form|crispy }}
{% if results == "got nothing" %}

We searched the whole app but got nothing! :(

{% elif results %} {% if results.matching_tasks %}
ToDos matched:
{% endif %} {% if results.matching_attachments %}
Attachments matched:
{% endif %} {% if results.matching_subtasks %}
SubTasks matched:
{% endif %} {% if results.matching_notes %}
Notes matched:
{% endif %} {% if results.matching_lists %}
Lists matched:
{% endif %} {% endif %} {% endblock content %}