{% extends 'base.html.twig' %} {% block title %}{{ parent() }} | {{ 'jobscheduler.title'|trans }}{% endblock %} {% block titlesm %}{{ 'jobscheduler.title'| trans }}{% endblock titlesm %} {% block body %}
{{ form_start(edit_form, { 'action': path('jobscheduler_update',{id : entity.id}), 'attr': { 'class': 'myddleware_reglebundle_jobscheduler' ,'novalidate' : ''} }) }}
{{ form_widget( edit_form.command, { 'attr': {'class': 'form-select' , 'id' : 'command'} }) }} {{ form_errors( edit_form.command, { 'attr': {'class': 'form-select' , 'id' : 'command'} }) }}
{{ form_widget( edit_form.paramName1, { 'attr': {'class': 'form-control' , 'id' : 'paramName1' , 'readonly' :''} }) }}
{{ form_widget( edit_form.paramValue1, { 'attr': {'class': 'form-select' , 'id' : 'paramValue1'} }) }}
{{ form_widget( edit_form.paramName2, { 'attr': {'class': 'form-control' , 'id' : 'paramName2' , 'readonly' :''} }) }}
{{ form_widget( edit_form.paramValue2, { 'attr': {'class': 'form-control' , 'id' : 'paramValue2'} }) }}
{{ form_widget( edit_form.period, { 'attr': {'class': 'form-control' , 'id' : 'period'} }) }}
{{ form_widget( edit_form.jobOrder, { 'attr': {'class': 'form-control' , 'id' : 'jobOrder'} }) }}
{{ form_widget( edit_form.submit, { 'attr': {'class': 'btn btn-primary '} }) }}
{{ form_rest(edit_form) }} {{ form_end(edit_form) }}
{% endblock %}