{% extends 'generic/object.html' %} {% load helpers %} {% load i18n %} {% block content %}
| {% trans "Floor Plan" %} | {{ object.floorplan }} |
|---|---|
| {% trans "Position" %} | ({{ object.x_position }}, {{ object.y_position }}) |
| {% trans "Size" %} | {{ object.width }} × {{ object.height }} |
| {% trans "Type" %} | {{ object.get_tile_type_display }} |
| {% trans "Status" %} | {{ object.get_status_display }} |
| {% trans "Assigned Object" %} | {% if object.assigned_object %} {{ object.assigned_object }} ({{ object.assigned_object_type_name }}) {% else %} — {% endif %} |
| {% trans "Assigned Ports" %} |
{% for pa in object.port_assignments.all %}
{{ pa.port }} {% empty %} — {% endfor %} |
| {% trans "Label" %} | {{ object.label|placeholder }} |
| {% trans "Orientation" %} | {{ object.orientation }}° |