+Accessing the fields from the form
+----------------------------------
+
+.. attribute:: Form.fields
+
+You can access the fields of :class:`Form` instance from its ``fields``
+attribute::
+
+ >>> for row in f.fields.values(): print(row)
+ ...
+
+
+
+ >>> f.fields['name']
+
+
+You can alter the field of :class:`Form` instance to change the way it is
+presented in the form::
+
+ >>> f.as_table().split('\n')[0]
+ '
'
+
+Beware not to alter the ``base_fields`` attribute because this modification
+will influence all subsequent ``ContactForm`` instances within the same Python
+process::
+
+ >>> f.base_fields['name'].label = "Username"
+ >>> another_f = CommentForm(auto_id=False)
+ >>> another_f.as_table().split('\n')[0]
+ '