| 
									
										
										
										
											2021-03-02 15:58:33 -05:00
										 |  |  | {% extends 'generic/object.html' %} | 
					
						
							| 
									
										
										
										
											2016-03-01 11:23:03 -05:00
										 |  |  | {% load helpers %} | 
					
						
							| 
									
										
										
										
											2020-03-15 23:45:18 -04:00
										 |  |  | {% load plugins %} | 
					
						
							| 
									
										
										
										
											2023-07-29 03:30:25 +07:00
										 |  |  | {% load i18n %} | 
					
						
							| 
									
										
										
										
											2016-03-01 11:23:03 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-02 15:58:33 -05:00
										 |  |  | {% block breadcrumbs %} | 
					
						
							| 
									
										
										
										
											2021-07-20 12:14:01 -04:00
										 |  |  |   {{ block.super }} | 
					
						
							| 
									
										
										
										
											2021-09-22 11:48:22 -05:00
										 |  |  |   <li class="breadcrumb-item"><a href="{% url 'circuits:circuit_list' %}?provider_id={{ object.provider.pk }}">{{ object.provider }}</a></li> | 
					
						
							| 
									
										
										
										
											2018-06-14 16:15:14 -04:00
										 |  |  | {% endblock %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block content %} | 
					
						
							| 
									
										
										
										
											2022-07-01 15:10:31 -04:00
										 |  |  |   <div class="row"> | 
					
						
							|  |  |  |     <div class="col col-md-6"> | 
					
						
							|  |  |  |       <div class="card"> | 
					
						
							| 
									
										
										
										
											2023-07-29 03:30:25 +07:00
										 |  |  |         <h5 class="card-header">{% trans "Circuit" %}</h5> | 
					
						
							| 
									
										
										
										
											2024-01-17 16:25:42 -05:00
										 |  |  |         <table class="table table-hover attr-table"> | 
					
						
							|  |  |  |           <tr> | 
					
						
							|  |  |  |             <th scope="row">{% trans "Provider" %}</th> | 
					
						
							|  |  |  |             <td>{{ object.provider|linkify }}</td> | 
					
						
							|  |  |  |           </tr> | 
					
						
							|  |  |  |           <tr> | 
					
						
							|  |  |  |             <th scope="row">{% trans "Account" %}</th> | 
					
						
							|  |  |  |             <td>{{ object.provider_account|linkify|placeholder }}</td> | 
					
						
							|  |  |  |           </tr> | 
					
						
							|  |  |  |           <tr> | 
					
						
							|  |  |  |             <th scope="row">{% trans "Circuit ID" %}</th> | 
					
						
							|  |  |  |             <td>{{ object.cid }}</td> | 
					
						
							|  |  |  |           </tr> | 
					
						
							|  |  |  |           <tr> | 
					
						
							|  |  |  |             <th scope="row">{% trans "Type" %}</th> | 
					
						
							|  |  |  |             <td>{{ object.type|linkify }}</td> | 
					
						
							|  |  |  |           </tr> | 
					
						
							|  |  |  |           <tr> | 
					
						
							|  |  |  |             <th scope="row">{% trans "Status" %}</th> | 
					
						
							|  |  |  |             <td>{% badge object.get_status_display bg_color=object.get_status_color %}</td> | 
					
						
							|  |  |  |           </tr> | 
					
						
							|  |  |  |           <tr> | 
					
						
							|  |  |  |             <th scope="row">{% trans "Tenant" %}</th> | 
					
						
							|  |  |  |             <td> | 
					
						
							|  |  |  |               {% if object.tenant.group %} | 
					
						
							|  |  |  |                 {{ object.tenant.group|linkify }} / | 
					
						
							|  |  |  |               {% endif %} | 
					
						
							|  |  |  |               {{ object.tenant|linkify|placeholder }} | 
					
						
							|  |  |  |             </td> | 
					
						
							|  |  |  |           </tr> | 
					
						
							|  |  |  |           <tr> | 
					
						
							|  |  |  |             <th scope="row">{% trans "Install Date" %}</th> | 
					
						
							|  |  |  |             <td>{{ object.install_date|annotated_date|placeholder }}</td> | 
					
						
							|  |  |  |           </tr> | 
					
						
							|  |  |  |           <tr> | 
					
						
							|  |  |  |             <th scope="row">{% trans "Termination Date" %}</th> | 
					
						
							|  |  |  |             <td>{{ object.termination_date|annotated_date|placeholder }}</td> | 
					
						
							|  |  |  |           </tr> | 
					
						
							|  |  |  |           <tr> | 
					
						
							|  |  |  |             <th scope="row">{% trans "Commit Rate" %}</th> | 
					
						
							|  |  |  |             <td>{{ object.commit_rate|humanize_speed|placeholder }}</td> | 
					
						
							|  |  |  |           </tr> | 
					
						
							|  |  |  |           <tr> | 
					
						
							|  |  |  |             <th scope="row">{% trans "Description" %}</th> | 
					
						
							|  |  |  |             <td>{{ object.description|placeholder }}</td> | 
					
						
							|  |  |  |           </tr> | 
					
						
							|  |  |  |         </table> | 
					
						
							| 
									
										
										
										
											2022-07-01 15:10:31 -04:00
										 |  |  |       </div> | 
					
						
							|  |  |  |       {% include 'inc/panels/custom_fields.html' %} | 
					
						
							|  |  |  |       {% include 'inc/panels/tags.html' %} | 
					
						
							| 
									
										
										
										
											2022-10-18 16:51:37 -04:00
										 |  |  |       {% include 'inc/panels/comments.html' %} | 
					
						
							| 
									
										
										
										
											2022-07-01 15:10:31 -04:00
										 |  |  |       {% plugin_left_page object %} | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  |     <div class="col col-md-6"> | 
					
						
							| 
									
										
										
										
											2022-10-18 16:51:37 -04:00
										 |  |  |       {% include 'circuits/inc/circuit_termination.html' with termination=object.termination_a side='A' %} | 
					
						
							|  |  |  |       {% include 'circuits/inc/circuit_termination.html' with termination=object.termination_z side='Z' %} | 
					
						
							| 
									
										
										
										
											2022-07-01 15:10:31 -04:00
										 |  |  |       {% include 'inc/panels/image_attachments.html' %} | 
					
						
							|  |  |  |       {% plugin_right_page object %} | 
					
						
							|  |  |  |     </div> | 
					
						
							|  |  |  |   </div> | 
					
						
							|  |  |  |   <div class="row"> | 
					
						
							| 
									
										
										
										
											2021-04-30 15:55:37 -07:00
										 |  |  |     <div class="col col-md-12"> | 
					
						
							| 
									
										
										
										
											2022-07-01 15:10:31 -04:00
										 |  |  |       {% plugin_full_width_page object %} | 
					
						
							| 
									
										
										
										
											2016-03-01 11:23:03 -05:00
										 |  |  |     </div> | 
					
						
							| 
									
										
										
										
											2022-07-01 15:10:31 -04:00
										 |  |  |   </div> | 
					
						
							| 
									
										
										
										
											2016-03-01 11:23:03 -05:00
										 |  |  | {% endblock %} |