diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt
a
|
b
|
|
520 | 520 | documentation <topics-http-file-uploads>`. |
521 | 521 | |
522 | 522 | When you use a ``FileField`` in a form, you must also remember to |
523 | | :ref:`bind the file data to the form <topics-file-uploads>`. |
| 523 | :ref:`bind the file data to the form <binding-uploaded-files>`. |
524 | 524 | |
525 | 525 | ``FilePathField`` |
526 | 526 | ~~~~~~~~~~~~~~~~~ |
… |
… |
|
587 | 587 | Using an ImageField requires that the `Python Imaging Library`_ is installed. |
588 | 588 | |
589 | 589 | When you use an ``ImageField`` on a form, you must also remember to |
590 | | :ref:`bind the file data to the form <topics-file-uploads>`. |
| 590 | :ref:`bind the file data to the form <binding-uploaded-files>`. |
591 | 591 | |
592 | 592 | .. _Python Imaging Library: http://www.pythonware.com/products/pil/ |
593 | 593 | |