{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block content %}

{% trans "Placement" %}

{% trans "Design" %} {{ object.design|linkify }}
{% trans "Kind" %} {{ object.get_kind_display }}
{% trans "Device" %} {{ object.device|linkify|placeholder }}
{% trans "Device type" %} {{ object.device_type|linkify|placeholder }}
{% trans "Proposed name" %} {{ object.proposed_name|placeholder }}
{% include 'inc/panels/custom_fields.html' %} {% plugin_left_page object %}

{% trans "Target placement" %}

{% trans "Target rack" %} {{ object.target_rack|linkify|placeholder }}
{% trans "Target position" %} {{ object.target_position|placeholder }}
{% trans "Target face" %} {{ object.target_face|placeholder }}
{# Device-bay targeting: shown only for a bay placement, since a rack-slot #} {# placement would otherwise render three empty rows. #} {% if object.target_bay or object.parent_placement %}

{% trans "Device bay" %}

{% trans "Chassis" %} {% if object.target_bay %}{{ object.target_bay.device|linkify }} {% else %}{{ object.parent_placement|linkify }} {% trans "planned" %}{% endif %}
{% trans "Bay" %} {% if object.target_bay %}{{ object.target_bay|linkify }} {% else %}{{ object.target_bay_name|placeholder }}{% endif %}
{% endif %} {% include 'inc/panels/tags.html' %} {% plugin_right_page object %}
{% endblock content %}