{% extends "layout.html.twig" %}
{% block title %}Station{% endblock %}
{% block content %}
{{ block('title') }}
{% for station in stations %}
- id = {{ station.id }}
- id_licence = {{ station.idLicence }}
- key = {{ station.keyValue }}
- manufacturer = {{ station.manufacturer }}
- model = {{ station.model }}
- id_number = {{ station.idNumber }}
- uuid = {{ station.uuid }}
- machine_name = {{ station.machineName }}
- os_version = {{ station.osVersion }}
- user_domain_name = {{ station.userDomainName }}
- user_name = {{ station.userName }}
- aes_crypto_key = {{ station.aesCryptoKey }}
- is_active = {{ station.isActive }}
{% endfor %}
{% endblock %}