{% extends 'generic/object.html' %} {% load helpers %} {% block title %}Catalyst Center Config Search{% endblock %} {% block header %}

Catalyst Center Config Search

{% endblock %} {% block content %}
Search Device Configurations
{% if query %} Clear {% endif %}
{% if error %} {% endif %} {% if query %}
Results for "{{ query }}"
{{ result_count }} device{{ result_count|pluralize }}
{% if results %}
{% for result in results %} {% endfor %}
Device Series Status Matches
{% if result.device_url %} {{ result.name }} {% else %} {{ result.name }} {% endif %} {{ result.series|default:"-" }} {% if result.reachability_status == "Reachable" %} {{ result.reachability_status }} {% elif result.reachability_status == "Unreachable" %} {{ result.reachability_status }} {% else %} {{ result.reachability_status|default:"unknown" }} {% endif %} {{ result.match_count }} match{{ result.match_count|pluralize:"es" }} {% if catalyst_url and result.device_id %} {% endif %}
{% for line in result.matching_lines %}{{ line.number|stringformat:"4d" }} {{ line.text }}
{% endfor %}{% if result.match_count > 10 %}... and {{ result.match_count|add:"-10" }} more matches{% endif %}
{% else %}

No devices found matching "{{ query }}"

{% endif %}
{% endif %} {% endblock %}