{% extends 'generic/object.html' %} {% load static %} {% load i18n %} {% block head %} {{ block.super }} {% endblock %} {% block content %}
{% csrf_token %}
{% trans "Export Layout" %} {% if can_edit %} {% trans "Import Layout" %} {% endif %}
{% for face, image_url in faces %}
{% if image_url %} {{ object }} ({{ face }}) {% else %}
{% blocktrans with face_name=face %}No {{ face_name }} image set for this device type.{% endblocktrans %}
{% endif %}
{% for item in placed %} {% if item.face == face %}
{{ item.short_name }}
{% endif %} {% endfor %}
{% endfor %} {% if highlight and not placed_highlighted %}
{% blocktrans with name=highlight %}"{{ name }}" has not yet been positioned on this diagram.{% endblocktrans %}
{% endif %}
{% trans "Components" %}
{% for item in placed %} {% endfor %} {% for item in unplaced %} {% endfor %}
{% if can_edit %}
{% trans "Unplaced Components" %}
{% for item in unplaced %}
{{ item.short_name }}
{% empty %}

{% trans "Every component has been placed." %}

{% endfor %}
{% endif %}
{% endblock %} {% block javascript %} {{ block.super }} {% endblock %}