Browse Source

Merge pull request #7693 from rhyser9/7668_location_detail_elevation

Closes #7668: Add 'View Elevations' button to location detail page
Jeremy Stretch 4 years ago
parent
commit
288a1d23e5
1 changed files with 10 additions and 0 deletions
  1. 10 0
      netbox/templates/dcim/location.html

+ 10 - 0
netbox/templates/dcim/location.html

@@ -21,14 +21,17 @@
           <tr>
           <tr>
             <th scope="row">Name</th>
             <th scope="row">Name</th>
             <td>{{ object.name }}</td>
             <td>{{ object.name }}</td>
+            <td></td>
           </tr>
           </tr>
           <tr>
           <tr>
             <th scope="row">Description</th>
             <th scope="row">Description</th>
             <td>{{ object.description|placeholder }}</td>
             <td>{{ object.description|placeholder }}</td>
+            <td></td>
           </tr>
           </tr>
           <tr>
           <tr>
             <th scope="row">Site</th>
             <th scope="row">Site</th>
             <td><a href="{{ object.site.get_absolute_url }}">{{ object.site }}</a></td>
             <td><a href="{{ object.site.get_absolute_url }}">{{ object.site }}</a></td>
+            <td></td>
           </tr>
           </tr>
           <tr>
           <tr>
             <th scope="row">Parent</th>
             <th scope="row">Parent</th>
@@ -39,18 +42,25 @@
                 <span class="text-muted">&mdash;</span>
                 <span class="text-muted">&mdash;</span>
               {% endif %}
               {% endif %}
             </td>
             </td>
+            <td></td>
           </tr>
           </tr>
           <tr>
           <tr>
             <th scope="row">Racks</th>
             <th scope="row">Racks</th>
             <td>
             <td>
               <a href="{% url 'dcim:rack_list' %}?location_id={{ object.pk }}">{{ rack_count }}</a>
               <a href="{% url 'dcim:rack_list' %}?location_id={{ object.pk }}">{{ rack_count }}</a>
             </td>
             </td>
+            <td class="noprint text-end">
+              <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>
+            </td>
           </tr>
           </tr>
           <tr>
           <tr>
             <th scope="row">Devices</th>
             <th scope="row">Devices</th>
             <td>
             <td>
               <a href="{% url 'dcim:device_list' %}?location_id={{ object.pk }}">{{ device_count }}</a>
               <a href="{% url 'dcim:device_list' %}?location_id={{ object.pk }}">{{ device_count }}</a>
             </td>
             </td>
+            <td></td>
           </tr>
           </tr>
         </table>
         </table>
       </div>
       </div>