{{ form_start(form) }} {{ form_row(form.file) }}
{{ form_row(form.name, {'label' : 'label.name'}) }}
{{ form_row(form.wishlist, {'label' : 'label.wishlist'}) }}
{{ form_row(form.url, {'label' : 'label.url'}) }}
{{ form_row(form.visibility, {'label' : 'label.visibility'} ) }}
{{ form_row(form.price, {'label' : 'label.price'}) }}
{{ form_row(form.currency, {'label' : 'label.currency'}) }}
{{ form_row(form.comment, {'label' : 'label.comment', 'attr': {'class': 'materialize-textarea'}} ) }}
{% if app.request.get('_route') == 'app_wish_add' %} {% set cancelUrl = path('app_wishlist_show', {id: app.request.query.get('wishlist')}) %} {% else %} {% set cancelUrl = path('app_wishlist_show', {id: wish.wishlist.id}) %} {% endif %} {{ 'btn.cancel'|trans }}
{{ form_end(form) }}