{% load i18n sizeformat %}

{% trans "Info" %}


{% trans "Name" %}
{{ board.name }}
{% trans "Status" %}
{{ board.status }}
{% trans "Type" %}
{{ board.type }}
{% trans "ID" %}
{{ board.uuid }}
{% trans "MAC" %}
{{ board.mac_addr }}
{% trans "LR version" %}
{{ board.lr_version }}
{% trans "Code" %}
{{ board.code }}
{% trans "Creation data" %}
{{ board.created_at }}
{% trans "Location" %}
Latitude: {{ coordinates.latitude }}
Longitude: {{ coordinates.longitude }}
Altitude: {{ coordinates.altitude }}
{% trans "Mobile" %}
{{ board.mobile }}
{% trans "Extra" %}
{{ board.extra }}
{% trans "Fleet Name" %}
{{ board.fleet_name }}
{% trans "Fleet ID" %}
{{ board.fleet }}

{% trans "Ports" %}


{% if ports %} {% for port in ports %}
{{ port.VIF_name }}
{{ port.ip }}
{% endfor %} {% else %}
--
{% endif %}

{% trans "Services" %}


{% if services %} {% for service in services %}
{{ service.name }}
[{{ service.protocol }}] L: {{ service.port }}; P: {{ service.public_port }}
{% endfor %} {% else %}
--
{% endif %}

{% trans "Web Services" %}


{% if webservices %} {% for ws in webservices %}
{{ ws.name }} [{{ ws.port }}]
{{ ws.uuid }}
{% endfor %} {% else %}
--
{% endif %}

{% trans "Plugins" %}


{% if plugins %} {% for plugin in plugins %}
{{ plugin.name }}
{{ plugin.id }}
{% endfor %} {% else %}
--
{% endif %}