{% extends 'layout.html.twig' %} {% set adminMenu = true %} {% block title %}{{ title }}{% endblock %} {% block content %}

{{ block('title') }}

{% for flashMessage in app.session.flashbag.get('success') %}
{{ flashMessage }}
{% endfor %}
{{ form_start(stationForm, { 'attr': {'class': 'form-horizontal'} }) }}
{{ form_label(stationForm.id, null, { 'label_attr': { 'class': 'col-sm-4 control-label' }}) }}
{{ form_errors(stationForm.id) }} {{ form_widget(stationForm.id, { 'attr': { 'class': 'form-control' }}) }}
{{ form_label(stationForm.idLicence, null, { 'label_attr': { 'class': 'col-sm-4 control-label' }}) }}
{{ form_errors(stationForm.idLicence) }} {{ form_widget(stationForm.idLicence, { 'attr': { 'class': 'form-control' }}) }}
{{ form_label(stationForm.keyValue, null, { 'label_attr': { 'class': 'col-sm-4 control-label' }}) }}
{{ form_errors(stationForm.keyValue) }} {{ form_widget(stationForm.keyValue, { 'attr': { 'class': 'form-control' }}) }}
{{ form_label(stationForm.manufacturer, null, { 'label_attr': { 'class': 'col-sm-4 control-label' }}) }}
{{ form_errors(stationForm.manufacturer) }} {{ form_widget(stationForm.manufacturer, { 'attr': { 'class': 'form-control' }}) }}
{{ form_label(stationForm.model, null, { 'label_attr': { 'class': 'col-sm-4 control-label' }}) }}
{{ form_errors(stationForm.model) }} {{ form_widget(stationForm.model, { 'attr': { 'class': 'form-control' }}) }}
{{ form_label(stationForm.idNumber, null, { 'label_attr': { 'class': 'col-sm-4 control-label' }}) }}
{{ form_errors(stationForm.idNumber) }} {{ form_widget(stationForm.idNumber, { 'attr': { 'class': 'form-control' }}) }}
{{ form_label(stationForm.uuid, null, { 'label_attr': { 'class': 'col-sm-4 control-label' }}) }}
{{ form_errors(stationForm.uuid) }} {{ form_widget(stationForm.uuid, { 'attr': { 'class': 'form-control' }}) }}
{{ form_label(stationForm.machineName, null, { 'label_attr': { 'class': 'col-sm-4 control-label' }}) }}
{{ form_errors(stationForm.machineName) }} {{ form_widget(stationForm.machineName, { 'attr': { 'class': 'form-control' }}) }}
{{ form_label(stationForm.osVersion, null, { 'label_attr': { 'class': 'col-sm-4 control-label' }}) }}
{{ form_errors(stationForm.osVersion) }} {{ form_widget(stationForm.osVersion, { 'attr': { 'class': 'form-control' }}) }}
{{ form_label(stationForm.userDomainName, null, { 'label_attr': { 'class': 'col-sm-4 control-label' }}) }}
{{ form_errors(stationForm.userDomainName) }} {{ form_widget(stationForm.userDomainName, { 'attr': { 'class': 'form-control' }}) }}
{{ form_label(stationForm.userName, null, { 'label_attr': { 'class': 'col-sm-4 control-label' }}) }}
{{ form_errors(stationForm.userName) }} {{ form_widget(stationForm.userName, { 'attr': { 'class': 'form-control' }}) }}
{{ form_label(stationForm.aesCryptoKey, null, { 'label_attr': { 'class': 'col-sm-4 control-label' }}) }}
{{ form_errors(stationForm.aesCryptoKey) }} {{ form_widget(stationForm.aesCryptoKey, { 'attr': { 'class': 'form-control' }}) }}
{{ form_label(stationForm.isActive, null, { 'label_attr': { 'class': 'col-sm-4 control-label' }}) }}
{{ form_errors(stationForm.isActive) }} {{ form_widget(stationForm.isActive, { 'attr': { 'class': 'form-control' }}) }}
{{ form_end(stationForm) }}
{% endblock %}