From b078da382734293f95cb573f4dde006348ba01c0 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Fri, 22 May 2015 23:28:37 +0200 Subject: [PATCH] store templates under app/Resources/views --- cookbook/form/create_custom_field_type.rst | 4 ++-- cookbook/form/dynamic_form_modification.rst | 4 ++-- cookbook/form/form_customization.rst | 12 ++++++------ cookbook/templating/PHP.rst | 12 ++++++------ 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/cookbook/form/create_custom_field_type.rst b/cookbook/form/create_custom_field_type.rst index 17b28778bac..c13d2c44903 100644 --- a/cookbook/form/create_custom_field_type.rst +++ b/cookbook/form/create_custom_field_type.rst @@ -111,7 +111,7 @@ link for details), create a ``gender_widget`` block to handle this: .. code-block:: html+jinja - {# src/AppBundle/Resources/views/Form/fields.html.twig #} + {# app/Resources/views/Form/fields.html.twig #} {% block gender_widget %} {% spaceless %} {% if expanded %} @@ -132,7 +132,7 @@ link for details), create a ``gender_widget`` block to handle this: .. code-block:: html+php - +