Changeset 5308
- Timestamp:
- 05/21/07 15:45:33 (2 years ago)
- Files:
-
- django/trunk/docs/model-api.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/model-api.txt
r5302 r5308 186 186 187 187 ``DecimalField`` 188 ~~~~~~~~~~~~~~ 188 ~~~~~~~~~~~~~~~~ 189 190 **New in Django development version** 189 191 190 192 A fixed-precision decimal number, represented in Python by a ``Decimal`` instance. … … 318 320 ~~~~~~~~~~~~~~ 319 321 322 **Changed in Django development version** 323 320 324 A floating-point number represented in Python by a ``float`` instance. 321 325 322 326 The admin represents this as an ``<input type="text">`` (a single-line input). 327 328 **NOTE:** The semantics of ``FloatField`` have changed in the Django 329 development version. See the `Django 0.96 documentation`_ for the old behavior. 330 331 .. _Django 0.96 documentation: http://www.djangoproject.com/documentation/0.96/model-api/#floatfield 323 332 324 333 ``ImageField`` … … 752 761 the `Database API reference`_) that limit the 753 762 available admin choices for this object. Use this 754 with functions from the Python ``datetime`` module 763 with functions from the Python ``datetime`` module 755 764 to limit choices of objects by date. For example:: 756 765
