From 07ebd23254acab0677aca8baf76440811e9473e2 Mon Sep 17 00:00:00 2001 From: Sorcha Bowler Date: Mon, 14 Oct 2013 21:16:49 +0100 Subject: [PATCH] [1.6.x] Fixed #21223 -- Added form.id_for_label to topic guide. Thanks ebertti at yahoo.com.br for the suggestion. Backport of 018e2c055a from master --- docs/topics/forms/index.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/topics/forms/index.txt b/docs/topics/forms/index.txt index 1039a60d02f..70ed4a9c3da 100644 --- a/docs/topics/forms/index.txt +++ b/docs/topics/forms/index.txt @@ -325,6 +325,12 @@ attributes, which can be useful in your templates: +``{{ field.id_for_label }}`` + The ID that will be used for this field (``id_email`` in the example + above). You may want to use this in lieu of ``label_tag`` if you are + constructing the label manually. It's also useful, for example, if you have + some inline JavaScript and want to avoid hardcoding the field's ID. + ``{{ field.value }}`` The value of the field. e.g ``someone@example.com``