From f154514a5f5a2da8dedc534a69fed106be11963e Mon Sep 17 00:00:00 2001 From: Thomas Landauer Date: Wed, 29 Jul 2015 23:29:46 +0200 Subject: [PATCH] Fixed file path "app/Resources/views/Form/fields.html.twig" didn't work for me - see next code block: "form_theme form 'AppBundle:Form:fields.html.twig'" If this change is correct, I guess it needs to be corrected multiple times on this page. --- cookbook/form/form_customization.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/form/form_customization.rst b/cookbook/form/form_customization.rst index 6198e7b5726..4cab8696e24 100644 --- a/cookbook/form/form_customization.rst +++ b/cookbook/form/form_customization.rst @@ -282,7 +282,7 @@ can now re-use the form customization across many templates: .. code-block:: html+jinja - {# app/Resources/views/Form/fields.html.twig #} + {# src/AppBundle/Resources/views/Form/fields.html.twig #} {% block integer_widget %}
{% set type = type|default('number') %}