{{device.name}}
Identifiant: {{device.identifier}}
Type de carte: {{device.card.name}}
Entrées analogiques
{% for port in device.ports['input']%}
{% if port.enabled%}
{{port.number}} : {{port.name}}
{% end %}
{% end %}
Sorties digitales
{% for port in device.ports['output']%}
{% if port.enabled%}
{{port.number}} : {{port.name}}
{% end %}
{% end %}