mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			179 lines
		
	
	
		
			7.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			179 lines
		
	
	
		
			7.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'generic/object.html' %}
 | 
						|
{% load buttons %}
 | 
						|
{% load static %}
 | 
						|
{% load helpers %}
 | 
						|
{% load plugins %}
 | 
						|
 | 
						|
{% block breadcrumbs %}
 | 
						|
  {{ block.super }}
 | 
						|
  <li class="breadcrumb-item"><a href="{% url 'dcim:powerfeed_list' %}?site_id={{ object.power_panel.site.pk }}">{{ object.power_panel.site }}</a></li>
 | 
						|
  <li class="breadcrumb-item"><a href="{% url 'dcim:powerfeed_list' %}?power_panel_id={{ object.power_panel.pk }}">{{ object.power_panel }}</a></li>
 | 
						|
  {% if object.rack %}
 | 
						|
    <li class="breadcrumb-item"><a href="{% url 'dcim:powerfeed_list' %}?rack_id={{ object.rack.pk }}">{{ object.rack }}</a></li>
 | 
						|
  {% endif %}
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<div class="row">
 | 
						|
	<div class="col col-md-6">
 | 
						|
        <div class="card">
 | 
						|
            <h5 class="card-header">
 | 
						|
                Power Feed
 | 
						|
            </h5>
 | 
						|
            <div class="card-body">
 | 
						|
                <table class="table table-hover attr-table">
 | 
						|
                    <tr>
 | 
						|
                        <th scope="row">Power Panel</th>
 | 
						|
                        <td>{{ object.power_panel|linkify }}</td>
 | 
						|
                    </tr>
 | 
						|
                    <tr>
 | 
						|
                        <th scope="row">Rack</th>
 | 
						|
                        <td>{{ object.rack|linkify|placeholder }}</td>
 | 
						|
                    </tr>
 | 
						|
                    <tr>
 | 
						|
                        <th scope="row">Type</th>
 | 
						|
                        <td>{% badge object.get_type_display bg_color=object.get_type_color %}</td>
 | 
						|
                    </tr>
 | 
						|
                    <tr>
 | 
						|
                        <th scope="row">Status</th>
 | 
						|
                        <td>{% badge object.get_status_display bg_color=object.get_status_color %}</td>
 | 
						|
                    </tr>
 | 
						|
                    <tr>
 | 
						|
                        <th scope="row">Connected Device</th>
 | 
						|
                        <td>
 | 
						|
                            {% if object.connected_endpoint %}
 | 
						|
                                {{ object.connected_endpoint.device|linkify }} ({{ object.connected_endpoint }})
 | 
						|
                            {% else %}
 | 
						|
                                <span class="text-muted">None</span>
 | 
						|
                            {% endif %}
 | 
						|
                        </td>
 | 
						|
                    </tr>
 | 
						|
                    <tr>
 | 
						|
                        <th scope="row">Utilization (Allocated)</th>
 | 
						|
                        {% with utilization=object.connected_endpoint.get_power_draw %}
 | 
						|
                            {% if utilization %}
 | 
						|
                                <td>
 | 
						|
                                    {{ utilization.allocated }}VA / {{ object.available_power }}VA
 | 
						|
                                    {% if object.available_power > 0 %}
 | 
						|
                                        {% utilization_graph utilization.allocated|percentage:object.available_power %}
 | 
						|
                                    {% endif %}
 | 
						|
                                </td>
 | 
						|
                            {% else %}
 | 
						|
                                <td class="text-muted">N/A</td>
 | 
						|
                            {% endif %}
 | 
						|
                        {% endwith %}
 | 
						|
                    </tr>
 | 
						|
                </table>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
        <div class="card">
 | 
						|
            <h5 class="card-header">
 | 
						|
                Electrical Characteristics
 | 
						|
            </h5>
 | 
						|
            <div class="card-body">
 | 
						|
                <table class="table table-hover attr-table">
 | 
						|
                    <tr>
 | 
						|
                        <th scope="row">Supply</th>
 | 
						|
                        <td>{{ object.get_supply_display }}</td>
 | 
						|
                    </tr>
 | 
						|
                    <tr>
 | 
						|
                        <th scope="row">Voltage</th>
 | 
						|
                        <td>{{ object.voltage }}V</td>
 | 
						|
                    </tr>
 | 
						|
                    <tr>
 | 
						|
                        <th scope="row">Amperage</th>
 | 
						|
                        <td>{{ object.amperage }}A</td>
 | 
						|
                    </tr>
 | 
						|
                    <tr>
 | 
						|
                        <th scope="row">Phase</th>
 | 
						|
                        <td>{{ object.get_phase_display }}</td>
 | 
						|
                    </tr>
 | 
						|
                    <tr>
 | 
						|
                        <th scope="row">Max Utilization</th>
 | 
						|
                        <td>{{ object.max_utilization }}%</td>
 | 
						|
                    </tr>
 | 
						|
                </table>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
        {% include 'inc/panels/custom_fields.html' %}
 | 
						|
        {% include 'inc/panels/tags.html' %}
 | 
						|
        {% plugin_left_page object %}
 | 
						|
    </div>
 | 
						|
    <div class="col col-md-6">
 | 
						|
        <div class="card">
 | 
						|
            <h5 class="card-header">
 | 
						|
                Connection
 | 
						|
            </h5>
 | 
						|
            <div class="card-body">
 | 
						|
            {% if object.mark_connected %}
 | 
						|
                <div class="text-muted">
 | 
						|
                  <span class="text-success"><i class="mdi mdi-check-bold"></i></span> Marked as connected
 | 
						|
                </div>
 | 
						|
            {% elif object.cable %}
 | 
						|
                <table class="table table-hover attr-table">
 | 
						|
                    <tr>
 | 
						|
                        <th scope="row">Cable</th>
 | 
						|
                        <td>
 | 
						|
                            {{ object.cable|linkify }}
 | 
						|
                            <a href="{% url 'dcim:powerfeed_trace' pk=object.pk %}" class="btn btn-primary btn-sm lh-1" title="Trace">
 | 
						|
                                <i class="mdi mdi-transit-connection-variant" aria-hidden="true"></i>
 | 
						|
                            </a>
 | 
						|
                        </td>
 | 
						|
                    </tr>
 | 
						|
                    {% if object.connected_endpoint %}
 | 
						|
                        <tr>
 | 
						|
                            <th scope="row">Device</th>
 | 
						|
                            <td>{{ object.connected_endpoint.device|linkify }}</td>
 | 
						|
                        </tr>
 | 
						|
                        <tr>
 | 
						|
                            <th scope="row">Name</th>
 | 
						|
                            <td>{{ object.connected_endpoint|linkify:"name" }}</td>
 | 
						|
                        </tr>
 | 
						|
                        <tr>
 | 
						|
                            <th scope="row">Type</th>
 | 
						|
                            <td>{{ object.connected_endpoint.get_type_display|placeholder }}</td>
 | 
						|
                        </tr>
 | 
						|
                        <tr>
 | 
						|
                            <th scope="row">Description</th>
 | 
						|
                            <td>{{ object.connected_endpoint.description|placeholder }}</td>
 | 
						|
                        </tr>
 | 
						|
                        <tr>
 | 
						|
                            <th scope="row">Path Status</th>
 | 
						|
                            <td>
 | 
						|
                                {% if object.path.is_active %}
 | 
						|
                                    <span class="badge bg-success">Reachable</span>
 | 
						|
                                {% else %}
 | 
						|
                                    <span class="badge bg-danger">Not Reachable</span>
 | 
						|
                                {% endif %}
 | 
						|
                            </td>
 | 
						|
                        </tr>
 | 
						|
                    {% endif %}
 | 
						|
                </table>
 | 
						|
            {% else %}
 | 
						|
                <div class="text-muted">
 | 
						|
                    Not connected
 | 
						|
                </div>
 | 
						|
            {% endif %}
 | 
						|
            </div>
 | 
						|
            {% if not object.mark_connected and not object.cable %}
 | 
						|
            <div class="card-footer">
 | 
						|
            {% if perms.dcim.add_cable %}
 | 
						|
                <a href="{% url 'dcim:powerfeed_connect' %}?a_terminations={{ object.pk }}&termination_b_type=dcim.powerport&return_url={{ object.get_absolute_url }}"
 | 
						|
                class="btn btn-primary btn-sm float-end">
 | 
						|
                    <i class="mdi mdi-ethernet-cable" aria-hidden="true"></i> Connect
 | 
						|
                </a>
 | 
						|
                    {% endif %}
 | 
						|
            </div>
 | 
						|
            {% endif %}
 | 
						|
        </div>
 | 
						|
        {% include 'inc/panels/comments.html' %}
 | 
						|
        {% plugin_right_page object %}
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
<div class="row">
 | 
						|
    <div class="col col-md-12">
 | 
						|
        {% plugin_full_width_page object %}
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
{% endblock %}
 |