From 0367d73735bf318004ce2eae6324fdc1389e2d14 Mon Sep 17 00:00:00 2001 From: pfleu Date: Tue, 12 Jan 2016 17:49:49 -0300 Subject: [PATCH] Correction needed There is an error in the prototype customization chapter. "tasks" must be "form" --- cookbook/form/form_customization.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbook/form/form_customization.rst b/cookbook/form/form_customization.rst index 9117ac44e86..7f4de2a0721 100644 --- a/cookbook/form/form_customization.rst +++ b/cookbook/form/form_customization.rst @@ -774,8 +774,8 @@ will be able to change the widget for each task as follows: {% block _tasks_entry_widget %} - {{ form_widget(task.task) }} - {{ form_widget(task.dueDate) }} + {{ form_widget(form.task) }} + {{ form_widget(form.dueDate) }} {% endblock %}