| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- {% extends 'generic/object.html' %}
- {% load helpers %}
- {% load plugins %}
- {% load render_table from django_tables2 %}
- {% block breadcrumbs %}
- {{ block.super }}
- {% for location in object.get_ancestors %}
- <li class="breadcrumb-item"><a href="{{ location.get_absolute_url }}">{{ location }}</a></li>
- {% endfor %}
- {% endblock %}
- {% block extra_controls %}
- {% if perms.dcim.add_location %}
- <a href="{% url 'dcim:location_add' %}?site={{ object.site.pk }}&parent={{ object.pk }}" class="btn btn-sm btn-primary">
- <span class="mdi mdi-plus-thick" aria-hidden="true"></span> Add Child Location
- </a>
- {% endif %}
- {% endblock extra_controls %}
- {% block content %}
- <div class="row mb-3">
- <div class="col col-md-6">
- <div class="card">
- <h5 class="card-header">
- Location
- </h5>
- <div class="card-body">
- <table class="table table-hover attr-table">
- <tr>
- <th scope="row">Name</th>
- <td>{{ object.name }}</td>
- </tr>
- <tr>
- <th scope="row">Description</th>
- <td>{{ object.description|placeholder }}</td>
- </tr>
- <tr>
- <th scope="row">Site</th>
- <td><a href="{{ object.site.get_absolute_url }}">{{ object.site }}</a></td>
- </tr>
- <tr>
- <th scope="row">Parent</th>
- <td>
- {% if object.parent %}
- <a href="{{ object.parent.get_absolute_url }}">{{ object.parent }}</a>
- {% else %}
- <span class="text-muted">—</span>
- {% endif %}
- </td>
- </tr>
- <tr>
- <th scope="row">Tenant</th>
- <td>
- {% if object.tenant %}
- {% if object.tenant.group %}
- <a href="{{ object.tenant.group.get_absolute_url }}">{{ object.tenant.group }}</a> /
- {% endif %}
- <a href="{{ object.tenant.get_absolute_url }}">{{ object.tenant }}</a>
- {% else %}
- <span class="text-muted">None</span>
- {% endif %}
- </td>
- </tr>
- <tr>
- <th scope="row">Racks</th>
- <td>
- {% if rack_count %}
- <div class="float-end noprint">
- <a href="{% url 'dcim:rack_elevation_list' %}?location_id={{ object.pk }}" class="btn btn-sm btn-primary" title="View elevations">
- <i class="mdi mdi-server"></i>
- </a>
- </div>
- {% endif %}
- <a href="{% url 'dcim:rack_list' %}?location_id={{ object.pk }}">{{ rack_count }}</a>
- </td>
- </tr>
- <tr>
- <th scope="row">Devices</th>
- <td>
- <a href="{% url 'dcim:device_list' %}?location_id={{ object.pk }}">{{ device_count }}</a>
- </td>
- </tr>
- </table>
- </div>
- </div>
- {% include 'inc/panels/tags.html' %}
- {% plugin_left_page object %}
- </div>
- <div class="col col-md-6">
- {% include 'inc/panels/custom_fields.html' %}
- {% include 'inc/panels/contacts.html' %}
- {% include 'inc/panels/image_attachments.html' %}
- {% plugin_right_page object %}
- </div>
- </div>
- <div class="row mb-3">
- <div class="col col-md-12">
- <div class="card">
- <h5 class="card-header">Locations</h5>
- <div class="card-body table-responsive">
- {% render_table child_locations_table 'inc/table.html' %}
- {% include 'inc/paginator.html' with paginator=child_locations_table.paginator page=child_locations_table.page %}
- </div>
- </div>
- {% plugin_full_width_page object %}
- </div>
- </div>
- {% endblock %}
|