| 1385 | ``FloatField`` |
| 1386 | ~~~~~~~~~~~~~~ |
| 1387 | |
| 1388 | * Default widget: ``TextInput`` |
| 1389 | * Empty value: ``None`` |
| 1390 | * Normalizes to: A Python float. |
| 1391 | * Validates that the given value is an float. Leading and trailing |
| 1392 | whitespace is allowed, as in Python's ``int()`` function. |
| 1393 | * Error message keys: ``required``, ``invalid``, ``max_value``, |
| 1394 | ``min_value`` |
| 1395 | |
| 1396 | Takes two optional arguments for validation, ``max_value`` and ``min_value``. |
| 1397 | These control the range of values permitted in the field. |
| 1398 | |