Ticket #2364: numericrangevalidator-doc.diff

File numericrangevalidator-doc.diff, 736 bytes (added by Matt McClanahan, 18 years ago)

Doc patch for docs/forms.txt

  • docs/forms.txt

     
    581581    the executable specified in the ``JING_PATH`` setting (see the settings_
    582582    document for more details).
    583583
     584``NumericRangeValidator``
     585    Takes two boundary numbers, lower_bound and upper_bound.  Both parameters
     586    are optional.  With lower_bound only, a '>=' is performed.  With
     587    upper_bound only, a '<=' is performed.
     588
    584589.. _`generic views`: http://www.djangoproject.com/documentation/generic_views/
    585590.. _`models API`: http://www.djangoproject.com/documentation/model_api/
    586591.. _settings: http://www.djangoproject.com/documentation/settings/
Back to Top