{% if request.GET.filter and objects.paginator.count > 0 or request.GET.search and objects.paginator.count > 0 %}
{{objects.paginator.count}} target{{objects.paginator.count|pluralize}} found
{% elif request.GET.filter and objects.paginator.count == 0 or request.GET.search and objects.paginator.count == 0 %}
No targets found
{%else%}
All targets
{%endif%}
{% if objects.paginator.count == 0 %}
{% else %}
{% include "basetable_top.html" %}
{% for o in objects %}
{{o.name}}
{{o.version}}
{% if o.description %}{{o.description}}{% else %}{{o.summary}}{%endif%}