{% extends './layout/default' %} {% block breadcrumbs %} {{ Breadcrumbs.render(Route.getCurrentRoute.getName, currency) }} {% endblock %} {% block content %}

{{ 'mandatoryFields'|_ }}

{{ ExpandedForm.text('name', currency.name,{'maxlength' : 48}) }} {{ ExpandedForm.text('symbol', currency.symbol,{'maxlength' : 51}) }} {{ ExpandedForm.text('code', currency.code,{'maxlength' : 51}) }} {{ ExpandedForm.integer('decimal_places', currency.decimal_places,{'maxlength' : 2,'min': 0,'max': 12}) }} {{ ExpandedForm.checkbox('enabled', null, currency.enabled) }}
{# panel for options #}

{{ 'options'|_ }}

{{ ExpandedForm.optionsList('update','currency') }}
{% endblock %}