{% load i18n sizeformat %}

{% trans "Info" %}


{% trans "Name" %}
{{ board.name }}
{% trans "Status" %}
{{ board.status }}
{% trans "Type" %}
{{ board.type }}
{% trans "ID" %}
{{ board.uuid }}
{% 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 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 }}] {{ service.port }}
{{ service.public_port }}
{% endfor %} {% else %}
--
{% endif %}

{% trans "Plugins" %}


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