<?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/"
		>
<channel>
	<title>Comments on: Using Jinja2 with Django</title>
	<atom:link href="http://dbanck.de/2009/01/13/using-jinja2-with-django/feed/" rel="self" type="application/rss+xml" />
	<link>http://dbanck.de/2009/01/13/using-jinja2-with-django/</link>
	<description>Webentwicklung - Webdevelopment</description>
	<lastBuildDate>Fri, 05 Mar 2010 07:52:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Daniel Banck</title>
		<link>http://dbanck.de/2009/01/13/using-jinja2-with-django/comment-page-1/#comment-201</link>
		<dc:creator>Daniel Banck</dc:creator>
		<pubDate>Fri, 05 Mar 2010 07:52:33 +0000</pubDate>
		<guid isPermaLink="false">http://dbanck.de/?p=31#comment-201</guid>
		<description>Did you import &#039;env&#039;?
And why you wrote that in the __init__.py? You should keep this file as small as possible.</description>
		<content:encoded><![CDATA[<p>Did you import &#8216;env&#8217;?<br />
And why you wrote that in the __init__.py? You should keep this file as small as possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://dbanck.de/2009/01/13/using-jinja2-with-django/comment-page-1/#comment-200</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Fri, 05 Mar 2010 02:11:08 +0000</pubDate>
		<guid isPermaLink="false">http://dbanck.de/?p=31#comment-200</guid>
		<description>Actually, that line&#039;s in there. It&#039;s in my __init__.py under the libs folder in my project.</description>
		<content:encoded><![CDATA[<p>Actually, that line&#8217;s in there. It&#8217;s in my __init__.py under the libs folder in my project.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Banck</title>
		<link>http://dbanck.de/2009/01/13/using-jinja2-with-django/comment-page-1/#comment-199</link>
		<dc:creator>Daniel Banck</dc:creator>
		<pubDate>Thu, 04 Mar 2010 22:58:43 +0000</pubDate>
		<guid isPermaLink="false">http://dbanck.de/?p=31#comment-199</guid>
		<description>Maybe you missed this line, Mike:
env = Environment(extensions=global_exts, loader=ChoiceLoader(loader_array))

Thats the definition of &#039;env&#039;. Missing this would case your error.</description>
		<content:encoded><![CDATA[<p>Maybe you missed this line, Mike:<br />
env = Environment(extensions=global_exts, loader=ChoiceLoader(loader_array))</p>
<p>Thats the definition of &#8216;env&#8217;. Missing this would case your error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://dbanck.de/2009/01/13/using-jinja2-with-django/comment-page-1/#comment-198</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 04 Mar 2010 22:52:53 +0000</pubDate>
		<guid isPermaLink="false">http://dbanck.de/?p=31#comment-198</guid>
		<description>When using the the code you provided above, I run into the error:

global name &#039;env&#039; is not defined.

Anything you can think of that would cause this error?</description>
		<content:encoded><![CDATA[<p>When using the the code you provided above, I run into the error:</p>
<p>global name &#8216;env&#8217; is not defined.</p>
<p>Anything you can think of that would cause this error?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anton</title>
		<link>http://dbanck.de/2009/01/13/using-jinja2-with-django/comment-page-1/#comment-52</link>
		<dc:creator>Anton</dc:creator>
		<pubDate>Thu, 10 Sep 2009 11:46:01 +0000</pubDate>
		<guid isPermaLink="false">http://dbanck.de/?p=31#comment-52</guid>
		<description>Thanks, i&#039;ve seeked for this two lines to use jinja2 with django:

from django.utils import translation

env.install_gettext_translations(translation)</description>
		<content:encoded><![CDATA[<p>Thanks, i&#8217;ve seeked for this two lines to use jinja2 with django:</p>
<p>from django.utils import translation</p>
<p>env.install_gettext_translations(translation)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ekspekt</title>
		<link>http://dbanck.de/2009/01/13/using-jinja2-with-django/comment-page-1/#comment-34</link>
		<dc:creator>ekspekt</dc:creator>
		<pubDate>Tue, 30 Jun 2009 21:23:10 +0000</pubDate>
		<guid isPermaLink="false">http://dbanck.de/?p=31#comment-34</guid>
		<description>interesting post, will come back here, bookmarked your site</description>
		<content:encoded><![CDATA[<p>interesting post, will come back here, bookmarked your site</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Banck</title>
		<link>http://dbanck.de/2009/01/13/using-jinja2-with-django/comment-page-1/#comment-8</link>
		<dc:creator>Daniel Banck</dc:creator>
		<pubDate>Wed, 29 Apr 2009 11:31:56 +0000</pubDate>
		<guid isPermaLink="false">http://dbanck.de/?p=31#comment-8</guid>
		<description>Thanks! I&#039;ve corrected it.</description>
		<content:encoded><![CDATA[<p>Thanks! I&#8217;ve corrected it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://dbanck.de/2009/01/13/using-jinja2-with-django/comment-page-1/#comment-7</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Tue, 28 Apr 2009 00:53:10 +0000</pubDate>
		<guid isPermaLink="false">http://dbanck.de/?p=31#comment-7</guid>
		<description>Hi,

Last line of the last code snippet is wrong.

I think it should be:
return &#039;index.html&#039;,{&#039;test&#039;:&#039;some context test&#039;}</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Last line of the last code snippet is wrong.</p>
<p>I think it should be:<br />
return &#8216;index.html&#8217;,{&#8216;test&#8217;:&#8217;some context test&#8217;}</p>
]]></content:encoded>
	</item>
</channel>
</rss>
