{% extends 'generic/object.html' %}
{% load helpers %}
{% load plugins %}
{% load render_table from django_tables2 %}
{% block breadcrumbs %}
Endpoints
{{ object.endpoint_type }}
{{ object }}
{% endblock breadcrumbs %}
{% block content %}
| MAC Address |
{{ object.mac_address }} |
| Name |
{{ object.name|placeholder }} |
| Type |
{{ object.endpoint_type|linkify }} |
| Manufacturer |
{{ object.endpoint_type.manufacturer|linkify }} |
| Serial Number |
{{ object.serial|placeholder }} |
| Asset Tag |
{{ object.asset_tag|placeholder }} |
| Status |
{% badge object.get_status_display bg_color=object.get_status_color %} |
| Site |
{{ object.site|linkify }} |
| Location |
{{ object.location|linkify|placeholder }} |
{% if object.site.region %}
| Region |
{{ object.site.region|linkify }} |
{% endif %}
| Tenant |
{{ object.tenant|linkify|placeholder }} |
| Contact |
{{ object.contact|linkify|placeholder }} |
| Platform |
{{ object.platform|linkify|placeholder }} |
| Connection Type |
{% badge object.get_connection_type_display bg_color=object.get_connection_type_color %} |
| Primary IPv4 |
{{ object.primary_ip4|linkify|placeholder }} |
| Primary IPv6 |
{{ object.primary_ip6|linkify|placeholder }} |
{% if object.connection_type == 'wired' %}
| Connected Interface |
{{ object.connected_interface|linkify|placeholder }} |
{% endif %}
{% if object.connection_type == 'wireless' %}
| SSID |
{{ object.ssid|placeholder }} |
{% endif %}
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock content %}