{% extends "micboard/base.html" %} {% block content %}

{{ browse.title }}

{{ browse.total_count }} device{{ browse.total_count|pluralize }}
{% for receiver in browse.items %}

{{ receiver.name }}

{{ receiver.status_label }}

{{ receiver.manufacturer_name }}{% if receiver.model_name %} {{ receiver.model_name }}{% endif %}

Role
{{ receiver.role_label }}
Address
{{ receiver.ip_address }}
Location
{% if receiver.building_name %} {{ receiver.building_name }}{% if receiver.room_name %} / {{ receiver.room_name }}{% endif %} {% else %} Unassigned {% endif %}
{% empty %}

No online wireless chassis match this view.

{% endfor %}
{% if browse.total_pages > 1 %} {% endif %}
{% endblock %}