{% extends "app/tree/preview.html" %} {% load noctags %} {% block preview %}

Description

Vendor: {{o.vendor.name}}
Model:{{o.short_name}}
Is builtin?:{{o.is_builtin|bool_icon}}
Description:{{o.description}}
Part No.:{{o.part_number}}
Part No. Aliases:{{o.part_number_aliases|join:", "}}
{% with s_title="Outer" sockets=o.o_sockets direction="o"%} {% include "inv/apps/model/templates/sockets_table.html" %} {% if sockets %}
Outer sockets allow to plug this model inside other ones. Outer sockets can only be connected to inner sockets of compatible type.
{% endif %} {% endwith %} {% with s_title="Inner" sockets=o.i_sockets direction="i"%} {% include "inv/apps/model/templates/sockets_table.html" %} {% if sockets %}
Inner sockets allow to plug other models inside this one. Inner sockets can only be connected to outher sockets of compatible type.
{% endif %} {% endwith %} {% with s_title="Connection" sockets=o.c_sockets direction="c"%} {% include "inv/apps/model/templates/sockets_table.html" %} {% if sockets %}
Connection sockets allow horizontal (one-range) connections between models. Connection sockets can only be connected to connections sockets of compatible types.
{% endif %} {% endwith %} {% endblock %}