Author: mtredinnick
Date: 2007-05-26 23:37:46 -0500 (Sat, 26 May 2007)
New Revision: 5358
Modified:
django/trunk/docs/newforms.txt
Log:
Fixed #4395 -- Fixed a couple of typos in the examples.
Modified: django/trunk/docs/newforms.txt
===================================================================
--- django/trunk/docs/newforms.txt 2007-05-26 10:36:36 UTC (rev 5357)
+++ django/trunk/docs/newforms.txt 2007-05-27 04:37:46 UTC (rev 5358)
@@ -686,11 +686,11 @@
<form method="post">
<ul class="myformclass">
- <li>{{ form.sender.label }} {{ form.sender.label }}</li>
+ <li>{{ form.sender.label }} {{ form.sender }}</li>
<li class="helptext">{{ form.sender.help_text }}</li>
{% if form.sender.errors %}<ul class="errorlist">{{ form.sender.errors
}}</ul>{% endif %}
- <li>{{ form.subject.label }} {{ form.subject.label }}</li>
+ <li>{{ form.subject.label }} {{ form.subject }}</li>
<li class="helptext">{{ form.subject.help_text }}</li>
{% if form.subject.errors %}<ul class="errorlist">{{
form.subject.errors }}</ul>{% endif %}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---