Search {% if term %}for {{ term }} - {{ results|length }} result{{results|length|pluralize:"s" }}{% else %}database{% endif %}
{% comment %}
{% if term %}
Search for '{{ term }}'
{% for obj in results %}
{{ obj }}
{% include "whoisdb/handle_table.html" with object=obj %}
{% empty %}
No objects found.
{% endfor %}
{% endif %}
{% endcomment %}
{% if term and not results %}
No objects found.
{% endif %}