diff options
| author | Tim Graham <timograham@gmail.com> | 2014-10-30 18:42:54 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-10-30 18:44:54 -0400 |
| commit | 89df9d244d47d7c6cf29bd482a791dd4c684e237 (patch) | |
| tree | 0ae39e1f434e3e652fb2d740f8f806b7e90e7815 /docs | |
| parent | de8825685491ed0e3078cdcef0f7fed7b08796cc (diff) | |
[1.6.x] Fixed #23736 -- Corrected the description of the value that silent_variable_failure uses.
Thanks Aymeric Augustin for the report.
Backport of e7cb4f2fba from master
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/templates/api.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/ref/templates/api.txt b/docs/ref/templates/api.txt index f483aff5f5..fafdd21918 100644 --- a/docs/ref/templates/api.txt +++ b/docs/ref/templates/api.txt @@ -170,7 +170,9 @@ straight lookups. Here are some things to keep in mind: propagated, unless the exception has an attribute ``silent_variable_failure`` whose value is ``True``. If the exception *does* have a ``silent_variable_failure`` attribute whose value is - ``True``, the variable will render as an empty string. Example:: + ``True``, the variable will render as the value of the + :setting:`TEMPLATE_STRING_IF_INVALID` setting (an empty string, by default). + Example:: >>> t = Template("My name is {{ person.first_name }}.") >>> class PersonClass3: @@ -198,7 +200,7 @@ straight lookups. Here are some things to keep in mind: silently. * A variable can only be called if it has no required arguments. Otherwise, - the system will return an empty string. + the system will return the value of :setting:`TEMPLATE_STRING_IF_INVALID`. .. _alters-data-description: |
