<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Making a complex customized Django form template? Remember to include form.non_field_errors!</title>
	<atom:link href="http://kfarr.com/2008/04/04/making-a-complex-customized-django-form-template-remember-to-include-errorsnon_field_errors/feed/" rel="self" type="application/rss+xml" />
	<link>http://kfarr.com/2008/04/04/making-a-complex-customized-django-form-template-remember-to-include-errorsnon_field_errors/</link>
	<description></description>
	<lastBuildDate>Mon, 05 Dec 2011 07:14:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Cyril Pauya</title>
		<link>http://kfarr.com/2008/04/04/making-a-complex-customized-django-form-template-remember-to-include-errorsnon_field_errors/#comment-2098</link>
		<dc:creator><![CDATA[Cyril Pauya]]></dc:creator>
		<pubDate>Thu, 28 Jan 2010 03:26:14 +0000</pubDate>
		<guid isPermaLink="false">http://kfarr.wordpress.com/?p=297#comment-2098</guid>
		<description><![CDATA[Thanks!  This solved my problem.]]></description>
		<content:encoded><![CDATA[<p>Thanks!  This solved my problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Eastlund</title>
		<link>http://kfarr.com/2008/04/04/making-a-complex-customized-django-form-template-remember-to-include-errorsnon_field_errors/#comment-2063</link>
		<dc:creator><![CDATA[Paul Eastlund]]></dc:creator>
		<pubDate>Sun, 26 Jul 2009 01:08:54 +0000</pubDate>
		<guid isPermaLink="false">http://kfarr.wordpress.com/?p=297#comment-2063</guid>
		<description><![CDATA[Thanks!  Just ran into the exact same issue -- this was very helpful!]]></description>
		<content:encoded><![CDATA[<p>Thanks!  Just ran into the exact same issue &#8212; this was very helpful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: EconJohn</title>
		<link>http://kfarr.com/2008/04/04/making-a-complex-customized-django-form-template-remember-to-include-errorsnon_field_errors/#comment-2058</link>
		<dc:creator><![CDATA[EconJohn]]></dc:creator>
		<pubDate>Wed, 10 Jun 2009 20:35:05 +0000</pubDate>
		<guid isPermaLink="false">http://kfarr.wordpress.com/?p=297#comment-2058</guid>
		<description><![CDATA[You are my hero!!  Without this post I would have been banging my head against the wall all day!]]></description>
		<content:encoded><![CDATA[<p>You are my hero!!  Without this post I would have been banging my head against the wall all day!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ted</title>
		<link>http://kfarr.com/2008/04/04/making-a-complex-customized-django-form-template-remember-to-include-errorsnon_field_errors/#comment-2000</link>
		<dc:creator><![CDATA[ted]]></dc:creator>
		<pubDate>Tue, 12 May 2009 16:16:52 +0000</pubDate>
		<guid isPermaLink="false">http://kfarr.wordpress.com/?p=297#comment-2000</guid>
		<description><![CDATA[THANK YOU THANK YOU THANK YOU.]]></description>
		<content:encoded><![CDATA[<p>THANK YOU THANK YOU THANK YOU.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://kfarr.com/2008/04/04/making-a-complex-customized-django-form-template-remember-to-include-errorsnon_field_errors/#comment-1981</link>
		<dc:creator><![CDATA[Adam]]></dc:creator>
		<pubDate>Wed, 11 Mar 2009 00:29:15 +0000</pubDate>
		<guid isPermaLink="false">http://kfarr.wordpress.com/?p=297#comment-1981</guid>
		<description><![CDATA[Thanks so much!
I was halfway through making a custom form and view and all sorts of mess to try and get at the __all__ errors field that the template system won&#039;t show but contained the all-important &quot;invalid username/password&quot; error. Luckily your post (and shortly, a git reset) saved the day!]]></description>
		<content:encoded><![CDATA[<p>Thanks so much!<br />
I was halfway through making a custom form and view and all sorts of mess to try and get at the __all__ errors field that the template system won&#8217;t show but contained the all-important &#8220;invalid username/password&#8221; error. Luckily your post (and shortly, a git reset) saved the day!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lgespee</title>
		<link>http://kfarr.com/2008/04/04/making-a-complex-customized-django-form-template-remember-to-include-errorsnon_field_errors/#comment-1971</link>
		<dc:creator><![CDATA[lgespee]]></dc:creator>
		<pubDate>Tue, 06 Jan 2009 21:38:21 +0000</pubDate>
		<guid isPermaLink="false">http://kfarr.wordpress.com/?p=297#comment-1971</guid>
		<description><![CDATA[Thanks for the great tip. I couldn&#039;t find this anywhere in Django&#039;s documentation.

There is however a strange thing going on, form.non_field_errors.as_ul does add the  tags (I am using Django 1.0). I used a workaround by iterating manually through the non_field_errors.]]></description>
		<content:encoded><![CDATA[<p>Thanks for the great tip. I couldn&#8217;t find this anywhere in Django&#8217;s documentation.</p>
<p>There is however a strange thing going on, form.non_field_errors.as_ul does add the  tags (I am using Django 1.0). I used a workaround by iterating manually through the non_field_errors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dmitri</title>
		<link>http://kfarr.com/2008/04/04/making-a-complex-customized-django-form-template-remember-to-include-errorsnon_field_errors/#comment-1967</link>
		<dc:creator><![CDATA[Dmitri]]></dc:creator>
		<pubDate>Thu, 25 Dec 2008 15:24:15 +0000</pubDate>
		<guid isPermaLink="false">http://kfarr.wordpress.com/?p=297#comment-1967</guid>
		<description><![CDATA[I am new to django .
my form renders as html code 

Username: 

It does not display the actual text box .

Please assist .]]></description>
		<content:encoded><![CDATA[<p>I am new to django .<br />
my form renders as html code </p>
<p>Username: </p>
<p>It does not display the actual text box .</p>
<p>Please assist .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: das</title>
		<link>http://kfarr.com/2008/04/04/making-a-complex-customized-django-form-template-remember-to-include-errorsnon_field_errors/#comment-1963</link>
		<dc:creator><![CDATA[das]]></dc:creator>
		<pubDate>Wed, 17 Dec 2008 18:42:59 +0000</pubDate>
		<guid isPermaLink="false">http://kfarr.wordpress.com/?p=297#comment-1963</guid>
		<description><![CDATA[this helped alot thanks]]></description>
		<content:encoded><![CDATA[<p>this helped alot thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guido García</title>
		<link>http://kfarr.com/2008/04/04/making-a-complex-customized-django-form-template-remember-to-include-errorsnon_field_errors/#comment-1928</link>
		<dc:creator><![CDATA[Guido García]]></dc:creator>
		<pubDate>Sun, 31 Aug 2008 20:28:43 +0000</pubDate>
		<guid isPermaLink="false">http://kfarr.wordpress.com/?p=297#comment-1928</guid>
		<description><![CDATA[Thank you for your post.
Also documented here : http://code.djangoproject.com/browser/django/trunk/docs/ref/forms/validation.txt?rev=8511

Regards.]]></description>
		<content:encoded><![CDATA[<p>Thank you for your post.<br />
Also documented here : <a href="http://code.djangoproject.com/browser/django/trunk/docs/ref/forms/validation.txt?rev=8511" rel="nofollow">http://code.djangoproject.com/browser/django/trunk/docs/ref/forms/validation.txt?rev=8511</a></p>
<p>Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aral Balkan</title>
		<link>http://kfarr.com/2008/04/04/making-a-complex-customized-django-form-template-remember-to-include-errorsnon_field_errors/#comment-1895</link>
		<dc:creator><![CDATA[Aral Balkan]]></dc:creator>
		<pubDate>Sun, 29 Jun 2008 14:20:41 +0000</pubDate>
		<guid isPermaLink="false">http://kfarr.wordpress.com/?p=297#comment-1895</guid>
		<description><![CDATA[Thanks for posting this, it helped me out :)]]></description>
		<content:encoded><![CDATA[<p>Thanks for posting this, it helped me out <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

