summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/forms/widgets.txt4
-rw-r--r--docs/ref/templates/api.txt2
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/forms/widgets.txt b/docs/ref/forms/widgets.txt
index 293c69df1f..e5963397a2 100644
--- a/docs/ref/forms/widgets.txt
+++ b/docs/ref/forms/widgets.txt
@@ -562,7 +562,7 @@ Selector and checkbox widgets
.. code-block:: html
<ul>
- <li><input type='radio' ...></li>
+ <li><input type='radio' name='...'></li>
...
</ul>
@@ -658,7 +658,7 @@ the widget.
.. code-block:: html
<ul>
- <li><input type='checkbox' ...></li>
+ <li><input type='checkbox' name='...' ></li>
...
</ul>
diff --git a/docs/ref/templates/api.txt b/docs/ref/templates/api.txt
index a058ee032b..0a50e5e243 100644
--- a/docs/ref/templates/api.txt
+++ b/docs/ref/templates/api.txt
@@ -320,7 +320,7 @@ If you ``pop()`` too much, it'll raise
>>> c.pop()
Traceback (most recent call last):
...
- django.template.ContextPopException
+ ContextPopException
.. versionadded:: 1.7