mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
e8b970608e
To be consistent, all uses of — or None is replaced with the placeholder filter. Fixes #9537
100 lines
4.1 KiB
HTML
100 lines
4.1 KiB
HTML
{% extends 'ipam/vlan/base.html' %}
|
|
{% load helpers %}
|
|
{% load render_table from django_tables2 %}
|
|
{% load plugins %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col col-md-6">
|
|
<div class="card">
|
|
<h5 class="card-header">
|
|
VLAN
|
|
</h5>
|
|
<div class="card-body">
|
|
<table class="table table-hover attr-table">
|
|
<tr>
|
|
<th scope="row">Site</th>
|
|
<td>
|
|
{% if object.site %}
|
|
{% if object.site.region %}
|
|
{{ object.site.region|linkify }} /
|
|
{% endif %}
|
|
{{ object.site|linkify }}
|
|
{% else %}
|
|
{{ ''|placeholder }}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Group</th>
|
|
<td>{{ object.group|linkify|placeholder }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">VLAN ID</th>
|
|
<td>{{ object.vid }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Name</th>
|
|
<td>{{ object.name }}</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:vlan_list' %}?role={{ object.role.slug }}">{{ object.role }}</a>
|
|
{% else %}
|
|
{{ ''|placeholder }}
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Description</th>
|
|
<td>{{ object.description|placeholder }}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{% plugin_left_page object %}
|
|
</div>
|
|
<div class="col col-md-6">
|
|
{% include 'inc/panels/custom_fields.html' %}
|
|
{% include 'inc/panels/tags.html' %}
|
|
{% plugin_right_page object %}
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col col-md-12">
|
|
<div class="card">
|
|
<h5 class="card-header">
|
|
Prefixes
|
|
</h5>
|
|
<div class="card-body table-responsive">
|
|
{% render_table prefix_table 'inc/table.html' %}
|
|
</div>
|
|
{% if perms.ipam.add_prefix %}
|
|
<div class="card-footer text-end noprint">
|
|
<a href="{% url 'ipam:prefix_add' %}?{% if object.tenant %}tenant={{ object.tenant.pk }}&{% endif %}site={{ object.site.pk }}&vlan={{ object.pk }}" class="btn btn-primary btn-sm">
|
|
<i class="mdi mdi-plus-thick" aria-hidden="true"></i>
|
|
Add a Prefix
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% plugin_full_width_page object %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|