{% extends "base.html" %} {% block content %}
Search {% if term %}for {{ term }} - {{ results|length }} result{{results|length|pluralize:"s" }}{% else %}database{% endif %}

{% if term and not results %} No objects found. {% endif %}
{% for obj in results %}
{% include "whoisdb/handle_panel.html" with object=obj %}
{% endfor %} {% endblock %}