{% extends "base_objectbrowser.html" %} {% block title %}List Objects{% endblock %} {% block smallheader %}ObjectBrowser{% endblock %} {% block largeheader %}Search results{% endblock %} {% block nav1 %}objectbrowser{% endblock %} {% block footer %} {{ block.super }} {% endblock %} {% block content %} {% if objects %}

{{ objects|length }} potential matches to what you were looking for


{% for o in objects %} {% endfor %}
Short Name Object Type Object Name Filename
{{ o.description }} {{ o.object_type }} {{ o.name }} {{ o.filename }}


{% else %} {% if services %}

You are editing a service that is applied to a hostgroup

The service you want to edit is applied to all hosts in a specific hostgroup. What do you want to do ? {% else %}

Oh no! We couldn't find the objects you are looking for :/

Perhaps you try browsing for what you were looking for here {% endif %} {% endif %} {% endblock %} {% block sidebar %} {% if request.GET %} You searched for the following: {% for k,v in request.GET.items %} {% endfor %}
Attribute Value
{{ k }} {{ v }}
{% else %}

No search parameters were used. Showing all items.

Try looking for all hosts

{% endif %} {% endblock %}