{% extends "base.html" %} {% block content %}
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 %}
{% for obj in results %}
{{ obj }} ({{ obj.getClassName }})
{% include "whoisdb/handle_table.html" with object=obj %}
{% endfor %} {% endblock %}