<?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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"	>
<channel>
	<title>Comments on: Nested Formsets with Django</title>
	<atom:link href="http://yergler.net/blog/2009/09/27/nested-formsets-with-django/feed/" rel="self" type="application/rss+xml" />
	<link>http://yergler.net/blog/2009/09/27/nested-formsets-with-django/</link>
	<description>Because eventually I&#039;ll be right. Theoretically.</description>
	<lastBuildDate>Mon, 30 Aug 2010 14:27:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Piyush Verma</title>
		<link>http://yergler.net/blog/2009/09/27/nested-formsets-with-django/comment-page-1/#comment-15965</link>
		<dc:creator>Piyush Verma</dc:creator>
		<pubDate>Fri, 25 Dec 2009 22:15:47 +0000</pubDate>
		<guid isPermaLink="false">http://yergler.net/?p=1093#comment-15965</guid>
		<description>I think the nested_form iteration in template should have a form loop over forms as well once it goes inside form.nested. I got it working that ways alone.</description>
		<content:encoded><![CDATA[<p>I think the nested_form iteration in template should have a form loop over forms as well once it goes inside form.nested. I got it working that ways alone.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Piyush Verma</title>
		<link>http://yergler.net/blog/2009/09/27/nested-formsets-with-django/comment-page-1/#comment-15962</link>
		<dc:creator>Piyush Verma</dc:creator>
		<pubDate>Fri, 25 Dec 2009 20:45:11 +0000</pubDate>
		<guid isPermaLink="false">http://yergler.net/?p=1093#comment-15962</guid>
		<description>This one returns me an error of TennantFormFormSet is not iterable, where i use it in the template... can you help me with it?</description>
		<content:encoded><![CDATA[<p>This one returns me an error of TennantFormFormSet is not iterable, where i use it in the template&#8230; can you help me with it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Dwyer</title>
		<link>http://yergler.net/blog/2009/09/27/nested-formsets-with-django/comment-page-1/#comment-15389</link>
		<dc:creator>Kevin Dwyer</dc:creator>
		<pubDate>Tue, 08 Dec 2009 17:26:37 +0000</pubDate>
		<guid isPermaLink="false">http://yergler.net/?p=1093#comment-15389</guid>
		<description>Hello Nathan,

Many thanks for this - I&#039;d been trying to work out how this could be done for a while.</description>
		<content:encoded><![CDATA[<p>Hello Nathan,</p>
<p>Many thanks for this &#8211; I&#8217;d been trying to work out how this could be done for a while.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter van Kampen</title>
		<link>http://yergler.net/blog/2009/09/27/nested-formsets-with-django/comment-page-1/#comment-14060</link>
		<dc:creator>Peter van Kampen</dc:creator>
		<pubDate>Thu, 01 Oct 2009 22:11:12 +0000</pubDate>
		<guid isPermaLink="false">http://yergler.net/?p=1093#comment-14060</guid>
		<description>It was a bug in my code. I have removed the list around &#039;TenantFormset&#039; but got one of the updates wrong. Thanks again.</description>
		<content:encoded><![CDATA[<p>It was a bug in my code. I have removed the list around &#8216;TenantFormset&#8217; but got one of the updates wrong. Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Yergler</title>
		<link>http://yergler.net/blog/2009/09/27/nested-formsets-with-django/comment-page-1/#comment-14057</link>
		<dc:creator>Nathan Yergler</dc:creator>
		<pubDate>Thu, 01 Oct 2009 15:20:33 +0000</pubDate>
		<guid isPermaLink="false">http://yergler.net/?p=1093#comment-14057</guid>
		<description>Glad to hear it was helpful.  I&#039;m not exactly sure what you mean by n.is_valid() always returning True; are you saying that if the nested formset isn&#039;t valid, n.is_valid() will still return True?  That sounds like a bug in the validation of your nested form.  I wrote some simple tests for my deployment that test this sort of situation and if I recall correctly, they pass.  That said, I did do some tweaking for the examples... I&#039;ll take a closer look.</description>
		<content:encoded><![CDATA[<p>Glad to hear it was helpful.  I&#8217;m not exactly sure what you mean by n.is_valid() always returning True; are you saying that if the nested formset isn&#8217;t valid, n.is_valid() will still return True?  That sounds like a bug in the validation of your nested form.  I wrote some simple tests for my deployment that test this sort of situation and if I recall correctly, they pass.  That said, I did do some tweaking for the examples&#8230; I&#8217;ll take a closer look.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter van Kampen</title>
		<link>http://yergler.net/blog/2009/09/27/nested-formsets-with-django/comment-page-1/#comment-14050</link>
		<dc:creator>Peter van Kampen</dc:creator>
		<pubDate>Thu, 01 Oct 2009 10:16:52 +0000</pubDate>
		<guid isPermaLink="false">http://yergler.net/?p=1093#comment-14050</guid>
		<description>Thank you for posting this so timely! I needed to do this yesterday and got it working with some modifications this morning (CET). 

On thing I don&#039;t understand is that n.is_valid() always returns True.</description>
		<content:encoded><![CDATA[<p>Thank you for posting this so timely! I needed to do this yesterday and got it working with some modifications this morning (CET). </p>
<p>On thing I don&#8217;t understand is that n.is_valid() always returns True.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Yergler</title>
		<link>http://yergler.net/blog/2009/09/27/nested-formsets-with-django/comment-page-1/#comment-13992</link>
		<dc:creator>Nathan Yergler</dc:creator>
		<pubDate>Mon, 28 Sep 2009 03:27:58 +0000</pubDate>
		<guid isPermaLink="false">http://yergler.net/?p=1093#comment-13992</guid>
		<description>Well this wouldn&#039;t do it for the admin (on its own, at least); this would only work for using nested formsets in your own views.  It&#039;d be interesting to see if it&#039;s adaptable to the admin, though.  I&#039;m not sure how invasive you&#039;d have to be in order to handle rendering and saving correctly.</description>
		<content:encoded><![CDATA[<p>Well this wouldn&#8217;t do it for the admin (on its own, at least); this would only work for using nested formsets in your own views.  It&#8217;d be interesting to see if it&#8217;s adaptable to the admin, though.  I&#8217;m not sure how invasive you&#8217;d have to be in order to handle rendering and saving correctly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DarwinSurvivor</title>
		<link>http://yergler.net/blog/2009/09/27/nested-formsets-with-django/comment-page-1/#comment-13991</link>
		<dc:creator>DarwinSurvivor</dc:creator>
		<pubDate>Mon, 28 Sep 2009 03:20:17 +0000</pubDate>
		<guid isPermaLink="false">http://yergler.net/?p=1093#comment-13991</guid>
		<description>I have been bugging the django people to implement this (or at least look at some of the people who have tried) into django since I started using it. I hope you get it in there, as this is the #1 most annoying missing feature in the entire admin system.

Good Luck.</description>
		<content:encoded><![CDATA[<p>I have been bugging the django people to implement this (or at least look at some of the people who have tried) into django since I started using it. I hope you get it in there, as this is the #1 most annoying missing feature in the entire admin system.</p>
<p>Good Luck.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
