{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load static %} {% load plugins %} {% block header %}
{% plugin_buttons object %} {% if perms.dcim.change_rackreservation %} {% edit_button object %} {% endif %} {% if perms.dcim.delete_rackreservation %} {% delete_button object %} {% endif %}

{% block title %}{{ object }}{% endblock %}

{% include 'inc/created_updated.html' %}
{% custom_links object %}
{% endblock %} {% block content %}
Rack
{% with rack=object.rack %} {% endwith %}
Site {% if rack.site.region %} {{ rack.site.region }} / {% endif %} {{ rack.site }}
Group {% if rack.group %} {{ rack.group }} {% else %} None {% endif %}
Rack {{ rack }}
Reservation Details
Units {{ object.unit_list }}
Tenant {% if object.tenant %} {% if object.tenant.group %} {{ object.tenant.group }} / {% endif %} {{ object.tenant }} {% else %} None {% endif %}
User {{ object.user }}
Description {{ object.description }}
{% include 'inc/custom_fields_panel.html' %} {% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='dcim:rackreservation_list' %} {% plugin_left_page object %}
{% with rack=object.rack %}

Front

{% include 'dcim/inc/rack_elevation.html' with face='front' %}

Rear

{% include 'dcim/inc/rack_elevation.html' with face='rear' %}
{% endwith %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %} {% block javascript %} {% endblock %}