diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index 340dcff..e0418d6 100644
|
a
|
b
|
portability mentioned there should be heeded.
|
| 365 | 365 | |
| 366 | 366 | .. class:: DateField([auto_now=False, auto_now_add=False, **options]) |
| 367 | 367 | |
| 368 | | A date field. Has a few extra optional arguments: |
| | 368 | A date field. Normalizes to a Python ``datetime.date`` object. Has a few extra |
| | 369 | optional arguments: |
| 369 | 370 | |
| 370 | 371 | .. attribute:: DateField.auto_now |
| 371 | 372 | |
| … |
… |
the week on a Sunday.
|
| 388 | 389 | |
| 389 | 390 | .. class:: DateTimeField([auto_now=False, auto_now_add=False, **options]) |
| 390 | 391 | |
| 391 | | A date and time field. Takes the same extra options as :class:`DateField`. |
| | 392 | A date and time field. Normalizes to a Python ``datetime.datetime`` object. |
| | 393 | Takes the same extra options as :class:`DateField`. |
| 392 | 394 | |
| 393 | 395 | The admin represents this as two ``<input type="text">`` fields, with JavaScript |
| 394 | 396 | shortcuts. |
| … |
… |
input).
|
| 706 | 708 | |
| 707 | 709 | .. class:: TimeField([auto_now=False, auto_now_add=False, **options]) |
| 708 | 710 | |
| 709 | | A time. Accepts the same auto-population options as :class:`DateField` and |
| 710 | | :class:`DateTimeField`. The admin represents this as an ``<input type="text">`` |
| 711 | | with some JavaScript shortcuts. |
| | 711 | A time field. Normalizes to a Python ``datetime.time`` object. Accepts the same |
| | 712 | auto-population options as :class:`DateField` and :class:`DateTimeField`. The |
| | 713 | admin represents this as an ``<input type="text">`` with some JavaScript |
| | 714 | shortcuts. |
| 712 | 715 | |
| 713 | 716 | ``URLField`` |
| 714 | 717 | ------------ |