{% extends 'AdminBundle:Admin:adminLayout.html.twig' %} {% block head %} {{ parent() }} {{ backendHelpers.bazingajsTranslationJavaScripts() }} {% endblock %} {% block breadcrumb %} {{ backendHelpers.breadcrumb({ ("runtime_parameter.titles.home"|trans) : (path(paths.home)), ("runtime_parameter.titles.runtime parameter"|trans) : (path(paths.index)), ("runtime_parameter.titles.create parameter"|trans) : '' }) }} {% endblock %} {% block content %} {{ backendHelpers.pageTitle( "runtime_parameter.titles.create parameter"|trans ) }}
{{ backendHelpers.addActionButton(path(paths.index), paths.index, ('admin.titles.list'|trans), 'btn-light', 'icon-list' )}}
{%if form_errors(form)%} {{ form_errors(form) }} {%endif%}
{{ form_start(form, { 'attr': {"novalidate":"novalidate", "class":"form-horizontal", "role":"form"}}) }} {{ form_row(form.title) }} {{ form_row(form.name) }} {{ form_row(form.value) }} {{ form_row(form.description) }} {{ form_row(form.runtimeParameterGroup) }} {{ form_rest(form) }}
{{ form_end(form) }}
{% endblock %}