{% extends "base.html" %} {% load humanize %} {% block title %} Binary Pig: Free Text Search {%endblock%} {% block content %}
Search
{% if results %} Showing {{results|length}} of {{ count|intcomma}} results for {{term}}{% if search_type %} and type:{{search_type}}{% endif %} {% for result in results %}
{% for name,value,fieldname in result.render %} {% endfor %}  
{{result.name}} [{{result.type}}]
{{name}}: {{value}}
{% endfor %} {% elif error %}

Lucene query error:

Please verify your syntax. Error was "{{ error }}"
{% endif %}
{% endblock content%} {% block endofbody %} {% endblock endofbody %}