Skip to content

Instantly share code, notes, and snippets.

@tentacode
Created April 10, 2014 16:16
Show Gist options
  • Select an option

  • Save tentacode/10398658 to your computer and use it in GitHub Desktop.

Select an option

Save tentacode/10398658 to your computer and use it in GitHub Desktop.
Displaying buttons at the end of a form in a Twig form theme for Symfony
{% block form_rows %}
{% spaceless %}
{% for child in form if child.vars.block_prefixes.1 != 'submit' %}
{{ form_row(child) }}
{% endfor %}
{% for child in form if child.vars.block_prefixes.1 == 'submit' %}
{{ form_row(child) }}
{% endfor %}
{% endspaceless %}
{% endblock form_rows %}
{% form_theme form _self %}
{{ form(form) }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment