2021-12-20 16:28:11 -05:00
|
|
|
{% extends 'generic/object.html' %}
|
2021-12-17 09:35:57 -05:00
|
|
|
{% load helpers %}
|
|
|
|
{% load plugins %}
|
|
|
|
|
2021-12-20 16:28:11 -05:00
|
|
|
{% block breadcrumbs %}
|
|
|
|
{{ block.super }}
|
|
|
|
<li class="breadcrumb-item">
|
|
|
|
<a href="{% url 'dcim:device_modulebays' pk=object.device.pk %}">{{ object.device }}</a>
|
|
|
|
</li>
|
|
|
|
{% endblock %}
|
|
|
|
|
2021-12-17 09:35:57 -05:00
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col col-md-6">
|
|
|
|
<div class="card">
|
|
|
|
<h5 class="card-header">Module Bay</h5>
|
|
|
|
<div class="card-body">
|
|
|
|
<table class="table table-hover attr-table">
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Device</th>
|
|
|
|
<td>
|
2021-12-17 16:27:03 -05:00
|
|
|
<a href="{% url 'dcim:device_modulebays' pk=object.device.pk %}">{{ object.device }}</a>
|
2021-12-17 09:35:57 -05:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Name</th>
|
|
|
|
<td>{{ object.name }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Label</th>
|
|
|
|
<td>{{ object.label|placeholder }}</td>
|
|
|
|
</tr>
|
2021-12-20 09:51:55 -05:00
|
|
|
<tr>
|
|
|
|
<th scope="row">Position</th>
|
|
|
|
<td>{{ object.position|placeholder }}</td>
|
|
|
|
</tr>
|
2021-12-17 09:35:57 -05:00
|
|
|
<tr>
|
|
|
|
<th scope="row">Description</th>
|
|
|
|
<td>{{ object.description|placeholder }}</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-12-17 16:27:03 -05:00
|
|
|
{% include 'inc/panels/tags.html' %}
|
|
|
|
{% plugin_left_page object %}
|
2021-12-17 09:35:57 -05:00
|
|
|
</div>
|
|
|
|
<div class="col col-md-6">
|
2021-12-17 16:27:03 -05:00
|
|
|
{% include 'inc/panels/custom_fields.html' %}
|
2021-12-17 09:35:57 -05:00
|
|
|
<div class="card">
|
|
|
|
<h5 class="card-header">Installed Module</h5>
|
|
|
|
<div class="card-body">
|
2021-12-17 16:27:03 -05:00
|
|
|
{% if object.installed_module %}
|
|
|
|
{% with module=object.installed_module %}
|
2021-12-17 09:35:57 -05:00
|
|
|
<table class="table table-hover attr-table">
|
|
|
|
<tr>
|
2021-12-17 16:27:03 -05:00
|
|
|
<th scope="row">Manufacturer</th>
|
2021-12-17 09:35:57 -05:00
|
|
|
<td>
|
2021-12-17 16:27:03 -05:00
|
|
|
<a href="{{ module.module_type.manufacturer.get_absolute_url }}">{{ module.module_type.manufacturer }}</a>
|
2021-12-17 09:35:57 -05:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Module Type</th>
|
2021-12-17 16:27:03 -05:00
|
|
|
<td>
|
|
|
|
<a href="{{ module.get_absolute_url }}">{{ module.module_type }}</a>
|
|
|
|
</td>
|
2021-12-17 09:35:57 -05:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
{% endwith %}
|
|
|
|
{% 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 %}
|