diff --git a/form/without_class.rst b/form/without_class.rst index 2a642e0d7f0..d0a44ed6205 100644 --- a/form/without_class.rst +++ b/form/without_class.rst @@ -2,8 +2,8 @@ How to Use a Form without a Data Class ====================================== In most cases, a form is tied to an object, and the fields of the form get -and store their data on the properties of that object. This is exactly what -you've seen so far in this article with the ``Task`` class. +and store their data on the properties of that object. This is what +:doc:`the main article on forms ` is about. But sometimes, you may want to use a form without a class, and get back an array of the submitted data. The ``getData()`` method allows you to do