| 
									
										
										
										
											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"> | 
					
						
							| 
									
										
										
										
											2022-04-12 09:00:19 -04:00
										 |  |  |               <tr> | 
					
						
							|  |  |  |                 <th scope="row">Module</th> | 
					
						
							|  |  |  |                 <td>{{ module|linkify }}</td> | 
					
						
							|  |  |  |               </tr> | 
					
						
							| 
									
										
										
										
											2021-12-17 09:35:57 -05:00
										 |  |  |               <tr> | 
					
						
							| 
									
										
										
										
											2021-12-17 16:27:03 -05:00
										 |  |  |                 <th scope="row">Manufacturer</th> | 
					
						
							| 
									
										
										
										
											2022-03-22 14:51:20 -04:00
										 |  |  |                 <td>{{ module.module_type.manufacturer|linkify }}</td> | 
					
						
							| 
									
										
										
										
											2021-12-17 09:35:57 -05:00
										 |  |  |               </tr> | 
					
						
							|  |  |  |               <tr> | 
					
						
							|  |  |  |                 <th scope="row">Module Type</th> | 
					
						
							| 
									
										
										
										
											2022-03-22 14:51:20 -04:00
										 |  |  |                 <td>{{ module.module_type|linkify }}</td> | 
					
						
							| 
									
										
										
										
											2021-12-17 09:35:57 -05:00
										 |  |  |               </tr> | 
					
						
							| 
									
										
										
										
											2022-04-12 09:00:19 -04:00
										 |  |  |               <tr> | 
					
						
							|  |  |  |                 <th scope="row">Serial Number</th> | 
					
						
							|  |  |  |                 <td class="font-monospace">{{ module.serial|placeholder }}</td> | 
					
						
							|  |  |  |               </tr> | 
					
						
							|  |  |  |               <tr> | 
					
						
							|  |  |  |                 <th scope="row">Asset Tag</th> | 
					
						
							|  |  |  |                 <td class="font-monospace">{{ module.asset_tag|placeholder }}</td> | 
					
						
							|  |  |  |               </tr> | 
					
						
							| 
									
										
										
										
											2021-12-17 09:35:57 -05:00
										 |  |  |             </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 %} |