mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
165 lines
6.1 KiB
HTML
165 lines
6.1 KiB
HTML
{% extends 'generic/object.html' %}
|
|
{% load helpers %}
|
|
{% load plugins %}
|
|
{% load render_table from django_tables2 %}
|
|
|
|
{% block breadcrumbs %}
|
|
{{ block.super }}
|
|
{% if object.vrf %}
|
|
<li class="breadcrumb-item"><a href="{% url 'ipam:ipaddress_list' %}?vrf_id={{ object.vrf.pk }}">{{ object.vrf }}</a></li>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col col-md-4">
|
|
<div class="card">
|
|
<h5 class="card-header">
|
|
IP Address
|
|
</h5>
|
|
<div class="card-body">
|
|
<table class="table table-hover attr-table">
|
|
<tr>
|
|
<th scope="row">Family</th>
|
|
<td>IPv{{ object.family }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">VRF</th>
|
|
<td>
|
|
{% if object.vrf %}
|
|
<a href="{% url 'ipam:vrf' pk=object.vrf.pk %}">{{ object.vrf }}</a>
|
|
{% else %}
|
|
<span>Global</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Tenant</th>
|
|
<td>
|
|
{% if object.tenant.group %}
|
|
{{ object.tenant.group|linkify }} /
|
|
{% endif %}
|
|
{{ object.tenant|linkify|placeholder }}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Status</th>
|
|
<td>{% badge object.get_status_display bg_color=object.get_status_color %}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Role</th>
|
|
<td>
|
|
{% if object.role %}
|
|
<a href="{% url 'ipam:ipaddress_list' %}?role={{ object.role }}">{{ object.get_role_display }}</a>
|
|
{% else %}
|
|
{{ ''|placeholder }}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">DNS Name</th>
|
|
<td>{{ object.dns_name|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Description</th>
|
|
<td>{{ object.description|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Assignment</th>
|
|
<td>
|
|
{% if object.assigned_object %}
|
|
{% if object.assigned_object.parent_object %}
|
|
{{ object.assigned_object.parent_object|linkify }} /
|
|
{% endif %}
|
|
{{ object.assigned_object|linkify }}
|
|
{% else %}
|
|
{{ ''|placeholder }}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">NAT (inside)</th>
|
|
<td>
|
|
{% if object.nat_inside %}
|
|
{{ object.nat_inside|linkify }}
|
|
{% if object.nat_inside.assigned_object %}
|
|
({{ object.nat_inside.assigned_object.parent_object|linkify }})
|
|
{% endif %}
|
|
{% else %}
|
|
{{ ''|placeholder }}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Outside NAT IPs</th>
|
|
<td>
|
|
{% for ip in object.nat_outside.all %}
|
|
{{ ip|linkify }}<br/>
|
|
{% empty %}
|
|
{{ ''|placeholder }}
|
|
{% endfor %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{% include 'inc/panels/tags.html' %}
|
|
{% include 'inc/panels/custom_fields.html' %}
|
|
{% plugin_left_page object %}
|
|
</div>
|
|
<div class="col col-md-8">
|
|
{% include 'inc/panel_table.html' with table=parent_prefixes_table heading='Parent Prefixes' %}
|
|
{% if duplicate_ips_table.rows %}
|
|
{# Custom version of panel_table.html #}
|
|
<div class="card border-danger">
|
|
<h5 class="card-header">
|
|
<span class="text-danger">Duplicate IP Addresses</span>
|
|
{% if more_duplicate_ips %}
|
|
<div class="float-end">
|
|
<a type="button" class="btn btn-primary btn-sm"
|
|
{% if object.vrf %}
|
|
href="{% url 'ipam:ipaddress_list' %}?address={{ object.address.ip }}&vrf_id={{ object.vrf.pk }}"
|
|
{% else %}
|
|
href="{% url 'ipam:ipaddress_list' %}?address={{ object.address.ip }}&vrf_id=null"
|
|
{% endif %}
|
|
>Show all</a>
|
|
</div>
|
|
{% endif %}
|
|
</h5>
|
|
<div class="card-body table-responsive">
|
|
{% render_table duplicate_ips_table 'inc/table.html' %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
<div class="my-3">
|
|
{% include 'inc/panel_table.html' with table=related_ips_table heading='Related IP Addresses' %}
|
|
</div>
|
|
<div class="card">
|
|
<h5 class="card-header">
|
|
Services
|
|
</h5>
|
|
<div class="card-body">
|
|
{% if services %}
|
|
<table class="table table-hover">
|
|
{% for service in services %}
|
|
{% include 'ipam/inc/service.html' %}
|
|
{% endfor %}
|
|
</table>
|
|
{% else %}
|
|
<div class="text-muted">
|
|
None
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% plugin_right_page object %}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col col-md-12">
|
|
{% plugin_full_width_page object %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|