{% extends "base.html" %} {% block title %}Search - Illustrations DB{% endblock %} {% block content %}

Search

How to search: Type words or phrases, use wildcards, and choose which fields to search.
Examples: faith finds entries containing “faith”; *faith* uses wildcards; "exact phrase" matches the phrase; multiple words are ANDed (e.g., faith loyalty).

{% for field,label,checked in [ ('subject','Subject', selected.subject), ('illustration','Illustration', selected.illustration), ('application','Application', selected.application), ('scripture_raw','Scripture', selected.scripture_raw), ('source','Source', selected.source), ('talk_title','Talk Title', selected.talk_title), ('talk_number','Talk Number', selected.talk_number), ('entry_code','Code', selected.entry_code), ] %} {% endfor %}
Total entries in database: {{ total }}
{% endblock %}