diff --git a/docs/topics/forms/index.txt b/docs/topics/forms/index.txt
index 5b6f87f..10f840b 100644
a
|
b
|
templates:
|
289 | 289 | |
290 | 290 | ``{{ field.label }}`` |
291 | 291 | The label of the field, e.g. ``Email address``. |
| 292 | |
| 293 | ``{{ field.value }}`` |
| 294 | The value of the field. However, this will not be correct if value is |
| 295 | ``None``. Therefore, one should better use ``{{ field.value|default_if_none:"" }}`` |
| 296 | to specify a default value in template. |
292 | 297 | |
293 | 298 | ``{{ field.label_tag }}`` |
294 | 299 | The field's label wrapped in the appropriate HTML ``<label>`` tag, |