Customizing Symfony Form Templates

From Littledamien Wiki
Revision as of 17:10, 15 February 2015 by Video8 (talk | contribs) (→‎Application-wide customization of form themes)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Application-wide customization of form themes[edit]

The application-wide setting to use a different built-in theme to render forms:

(Not certain of the minimum Symfony version that supports this, but 2.3 does not and 2.6 does.)

# app/config/config.yml
twig:
	form_themes: 
		- 'bootstrap_3_layout.html.twig'

To implement a custom theme application-wide:

# app/config/config.yml
twig:
	form_themes: 
		- ':form:errors.html.twig'

Create a stand-along template that overrides the form_errors block:[1]

N.B. when combining a built-in theme with local form theme customizations, it's necessary to put the local customization after the built-in, e.g.:

# app/config/config.yml
	form_themes: 
		- 'bootstrap_3_layout.html.twig'
		- ':form:errors.html.twig'
		- ':form:fields.html.twig'

Form errors[edit]

Form errors are rendered with a {% form_errors %} block.

Field errors are rendered with a {% field_errors %} block.

Custom form errors theme[edit]

{# app/Resources/views/form/errors.html.twig #}
{% block form_errors %}
{% if errors.count > 0 %}
	<div class="alert alert-danger alert-form-errors">
{% for error in errors %}
		<div>{{ error.messageTemplate|trans(error.messageParameters, 'validators') }}</div>
{% endfor %}
	</div>
{% endif %}
{% endblock %}

Notes[edit]

  1. Making Application-Wide Customizations, Symfony Template Cookbook