{% extends 'OroUIBundle:actions:update.html.twig' %}
{% set formAction = entity.id ? path('oro_tax_update', {id: entity.id}) : path('oro_tax_create') %}
{% oro_title_set({params : {"%taxCode%": entity.code|default('N/A'|trans), '%entityName%': 'oro.tax.entity_label'|trans} }) %}
{% block navButtons %}
{{ parent() }}
{{ UI.cancelButton(path('oro_tax_index')) }}
{% set html = UI.saveAndCloseButton() %}
{% if entity.id or resource_granted('oro_tax_update') %}
{% set html = html ~ UI.saveAndStayButton() %}
{% endif %}
{{ UI.dropdownSaveButton({'html': html}) }}
{% endblock %}
{% block pageHeader %}
{% if entity.id %}
{% set breadcrumbs = {
'entity': entity,
'indexPath': path('oro_tax_index'),
'indexLabel': 'oro.tax.entity_plural_label'|trans,
'entityTitle': entity.code|default('N/A'|trans)
} %}
{{ parent() }}
{% else %}
{% set title = 'oro.ui.create_entity'|trans({'%entityName%': 'oro.tax.entity_label'|trans}) %}
{% include 'OroUIBundle::page_title_block.html.twig' with { title: title } %}
{% endif %}
{% endblock pageHeader %}
{% block content_data %}
{% set id = 'tax-edit' %}
{% set dataBlocks = [
{
'title': 'oro.tax.sections.general'|trans,
'class': 'active',
'subblocks': [
{
'data': [
form_row(form.code),
form_row(form.description),
form_row(form.rate),
]
}
]
}
] %}
{% set data = {
'formErrors': form_errors(form),
'dataBlocks': dataBlocks
}%}
{{ parent() }}
{% endblock content_data %}