[1.10.x] Removed incorrect "required" attribute in docs/ref/forms/fields.txt.
Backport of 17ed0d36bc
from master
This commit is contained in:
parent
dc4160ecc0
commit
b59195db80
|
@ -125,7 +125,7 @@ We've specified ``auto_id=False`` to simplify the output::
|
|||
>>> f = CommentForm(auto_id=False)
|
||||
>>> print(f)
|
||||
<tr><th>Your name:</th><td><input type="text" name="name" required /></td></tr>
|
||||
<tr><th>Your website:</th><td><input type="url" name="url" required /></td></tr>
|
||||
<tr><th>Your website:</th><td><input type="url" name="url" /></td></tr>
|
||||
<tr><th>Comment:</th><td><input type="text" name="comment" required /></td></tr>
|
||||
|
||||
``label_suffix``
|
||||
|
|
Loading…
Reference in New Issue