mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'base.html' %}
 | 
						|
{% load helpers %}
 | 
						|
{% load static %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<div class="btn-toolbar pull-right noprint" role="toolbar">
 | 
						|
    <button class="btn btn-default toggle-images" selected="selected">
 | 
						|
        <span class="glyphicon glyphicon-check" aria-hidden="true"></span> Show Images
 | 
						|
    </button>
 | 
						|
    <div class="btn-group" role="group">
 | 
						|
        <a href="{% url 'dcim:rack_elevation_list' %}{% querystring request face='front' %}" class="btn btn-default{% if rack_face == 'front' %} active{% endif %}">Front</a>
 | 
						|
        <a href="{% url 'dcim:rack_elevation_list' %}{% querystring request face='rear' %}" class="btn btn-default{% if rack_face == 'rear' %} active{% endif %}">Rear</a>
 | 
						|
    </div>
 | 
						|
    <div class="btn-group" role="group">
 | 
						|
        <a href="{% url 'dcim:rack_elevation_list' %}{% querystring request reverse=None %}" class="btn btn-default{% if not reverse %} active{% endif %}">Normal</a>
 | 
						|
        <a href="{% url 'dcim:rack_elevation_list' %}{% querystring request reverse='true' %}" class="btn btn-default{% if reverse %} active{% endif %}">Reversed</a>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
<h1>{% block title %}Rack Elevations{% endblock %}</h1>
 | 
						|
<div class="row">
 | 
						|
    {% if page %}
 | 
						|
        <div class="col-md-9">
 | 
						|
            <div style="white-space: nowrap; overflow-x: scroll;">
 | 
						|
                {% for rack in page %}
 | 
						|
                    <div style="display: inline-block; width: 266px">
 | 
						|
                        <div class="text-center">
 | 
						|
                            <strong><a href="{% url 'dcim:rack' pk=rack.pk %}">{{ rack.name }}</a></strong>
 | 
						|
                            {% if rack.role %}
 | 
						|
                                <br /><small class="label" style="color: {{ rack.role.color|fgcolor }}; background-color: #{{ rack.role.color }}">{{ rack.role }}</small>
 | 
						|
                            {% endif %}
 | 
						|
                            {% if rack.facility_id %}
 | 
						|
                                <br /><small class="text-muted">{{ rack.facility_id }}</small>
 | 
						|
                            {% endif %}
 | 
						|
                        </div>
 | 
						|
                        {% include 'dcim/inc/rack_elevation.html' with face=rack_face %}
 | 
						|
                        <div class="clearfix"></div>
 | 
						|
                        <div class="text-center">
 | 
						|
                            <strong><a href="{% url 'dcim:rack' pk=rack.pk %}">{{ rack.name }}</a></strong>
 | 
						|
                            {% if rack.facility_id %}
 | 
						|
                                <small class="text-muted">({{ rack.facility_id }})</small>
 | 
						|
                            {% endif %}
 | 
						|
                        </div>
 | 
						|
                    </div>
 | 
						|
                {% endfor %}
 | 
						|
            </div>
 | 
						|
            <br />
 | 
						|
            {% include 'inc/paginator.html' %}
 | 
						|
        </div>
 | 
						|
    {% else %}
 | 
						|
        <div class="col-md-9">
 | 
						|
            <p>No racks found</p>
 | 
						|
        </div>
 | 
						|
    {% endif %}
 | 
						|
    <div class="col-md-3 noprint">
 | 
						|
		{% include 'inc/search_panel.html' %}
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block javascript %}
 | 
						|
<script src="{% static 'js/rack_elevations.js' %}?v{{ settings.VERSION }}"></script>
 | 
						|
{% endblock %}
 |