<?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 (via Coffin)</title>
	<atom:link href="http://www.davidcramer.net/code/479/using-jinja2-with-django.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.davidcramer.net/code/479/using-jinja2-with-django.html</link>
	<description>A blog about Django, JavaScript, CSS, and general web development.</description>
	<lastBuildDate>Fri, 12 Mar 2010 19:46:01 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Django 101 &#124; KomunitasWeb</title>
		<link>http://www.davidcramer.net/code/479/using-jinja2-with-django.html/comment-page-1#comment-22034</link>
		<dc:creator>Django 101 &#124; KomunitasWeb</dc:creator>
		<pubDate>Wed, 17 Feb 2010 23:49:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/?p=479#comment-22034</guid>
		<description>[...] Using Jinja2 with Django (via Coffin) (September 2009) [...]</description>
		<content:encoded><![CDATA[<p>[...] Using Jinja2 with Django (via Coffin) (September 2009) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alberto</title>
		<link>http://www.davidcramer.net/code/479/using-jinja2-with-django.html/comment-page-1#comment-22000</link>
		<dc:creator>Alberto</dc:creator>
		<pubDate>Sat, 23 Jan 2010 18:38:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/?p=479#comment-22000</guid>
		<description>I having problems with i18n. I&#039;m in the same situation of dmlance. I get this error when I try to render a template with &quot;trans&quot; tags:

&#039;gettext&#039; is undefined

This is the code of my template:

{{ _(&quot;Hello&quot;) }}

I have added the i18n extension in settings.py but it doesn&#039;t work. Any solution?</description>
		<content:encoded><![CDATA[<p>I having problems with i18n. I&#8217;m in the same situation of dmlance. I get this error when I try to render a template with &#8220;trans&#8221; tags:</p>
<p>&#8216;gettext&#8217; is undefined</p>
<p>This is the code of my template:</p>
<p>{{ _(&#8220;Hello&#8221;) }}</p>
<p>I have added the i18n extension in settings.py but it doesn&#8217;t work. Any solution?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: koobz</title>
		<link>http://www.davidcramer.net/code/479/using-jinja2-with-django.html/comment-page-1#comment-21031</link>
		<dc:creator>koobz</dc:creator>
		<pubDate>Mon, 30 Nov 2009 22:46:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/?p=479#comment-21031</guid>
		<description>Looking at the filter/extension examples above, how does done access the django context variable that&#039;s available to you when you write custom django template tags?

The reason I ask is because I&#039;m trying to migrate this snippet here: http://www.djangosnippets.org/snippets/361/ to a jinja template.</description>
		<content:encoded><![CDATA[<p>Looking at the filter/extension examples above, how does done access the django context variable that&#8217;s available to you when you write custom django template tags?</p>
<p>The reason I ask is because I&#8217;m trying to migrate this snippet here: <a href="http://www.djangosnippets.org/snippets/361/" rel="nofollow">http://www.djangosnippets.org/snippets/361/</a> to a jinja template.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dmlance</title>
		<link>http://www.davidcramer.net/code/479/using-jinja2-with-django.html/comment-page-1#comment-20999</link>
		<dc:creator>dmlance</dc:creator>
		<pubDate>Sun, 11 Oct 2009 00:21:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/?p=479#comment-20999</guid>
		<description>Coffin have problems with i18n  (trans tags and related stuff), looks like they broke jinja2 gettext init.
Tested with latest coffin, django, jinja2 and py2.6
djajinja works without any problems.</description>
		<content:encoded><![CDATA[<p>Coffin have problems with i18n  (trans tags and related stuff), looks like they broke jinja2 gettext init.<br />
Tested with latest coffin, django, jinja2 and py2.6<br />
djajinja works without any problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lars</title>
		<link>http://www.davidcramer.net/code/479/using-jinja2-with-django.html/comment-page-1#comment-20962</link>
		<dc:creator>Lars</dc:creator>
		<pubDate>Thu, 17 Sep 2009 13:51:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/?p=479#comment-20962</guid>
		<description>I am using Jinja2 + Django on every project and I wanted to use it for external apps too.

Using this patch http://code.djangoproject.com/ticket/6691 and a custom template loader + a small wrapper around Jinja templates that looks in a directory for Jinja2 templates and falls back to Django templates if none is available. There are so many projects/methods out there doing exactly the same thing (at least four and I didn&#039;t even know about djanjinja).

It would be very nice to consolidate this work into one project and perhaps submit the necessary patches to Django to make the integration even easier.

On a related note: Jinja 2.2 has been released a few days ago.</description>
		<content:encoded><![CDATA[<p>I am using Jinja2 + Django on every project and I wanted to use it for external apps too.</p>
<p>Using this patch <a href="http://code.djangoproject.com/ticket/6691" rel="nofollow">http://code.djangoproject.com/ticket/6691</a> and a custom template loader + a small wrapper around Jinja templates that looks in a directory for Jinja2 templates and falls back to Django templates if none is available. There are so many projects/methods out there doing exactly the same thing (at least four and I didn&#8217;t even know about djanjinja).</p>
<p>It would be very nice to consolidate this work into one project and perhaps submit the necessary patches to Django to make the integration even easier.</p>
<p>On a related note: Jinja 2.2 has been released a few days ago.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zack</title>
		<link>http://www.davidcramer.net/code/479/using-jinja2-with-django.html/comment-page-1#comment-20955</link>
		<dc:creator>Zack</dc:creator>
		<pubDate>Wed, 16 Sep 2009 11:01:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/?p=479#comment-20955</guid>
		<description>I wrote http://bitbucket.org/zacharyvoase/djanjinja to scratch exactly the same itch. It looks like the two projects are relatively similar in their goals.</description>
		<content:encoded><![CDATA[<p>I wrote <a href="http://bitbucket.org/zacharyvoase/djanjinja" rel="nofollow">http://bitbucket.org/zacharyvoase/djanjinja</a> to scratch exactly the same itch. It looks like the two projects are relatively similar in their goals.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daily Digest for September 16th &#124; William Stearns</title>
		<link>http://www.davidcramer.net/code/479/using-jinja2-with-django.html/comment-page-1#comment-20953</link>
		<dc:creator>Daily Digest for September 16th &#124; William Stearns</dc:creator>
		<pubDate>Wed, 16 Sep 2009 10:26:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/?p=479#comment-20953</guid>
		<description>[...] Shared David Cramer: Using Jinja2 with Django (via Coffin). [...]</description>
		<content:encoded><![CDATA[<p>[...] Shared David Cramer: Using Jinja2 with Django (via Coffin). [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.davidcramer.net/code/479/using-jinja2-with-django.html/comment-page-1#comment-20950</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 15 Sep 2009 16:40:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/?p=479#comment-20950</guid>
		<description>FUD would imply something illegitimate. I had loads of issues getting it compiled through Fink.</description>
		<content:encoded><![CDATA[<p>FUD would imply something illegitimate. I had loads of issues getting it compiled through Fink.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marco</title>
		<link>http://www.davidcramer.net/code/479/using-jinja2-with-django.html/comment-page-1#comment-20947</link>
		<dc:creator>Marco</dc:creator>
		<pubDate>Tue, 15 Sep 2009 06:41:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/?p=479#comment-20947</guid>
		<description>what does it means &quot;the problem of getting bzr working on my Mac&quot; ??? 
It&#039;s not more complicated than get git or hg or svn ... use macports and you&#039;ll get bzr working like a charm. Moreover there is a .pkg installer (that I personally don&#039;t like but it works too without a problem)
Just to stop the FUD</description>
		<content:encoded><![CDATA[<p>what does it means &#8220;the problem of getting bzr working on my Mac&#8221; ???<br />
It&#8217;s not more complicated than get git or hg or svn &#8230; use macports and you&#8217;ll get bzr working like a charm. Moreover there is a .pkg installer (that I personally don&#8217;t like but it works too without a problem)<br />
Just to stop the FUD</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Redliner</title>
		<link>http://www.davidcramer.net/code/479/using-jinja2-with-django.html/comment-page-1#comment-20946</link>
		<dc:creator>Redliner</dc:creator>
		<pubDate>Tue, 15 Sep 2009 06:27:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidcramer.net/?p=479#comment-20946</guid>
		<description>Hi,
I use this connector to make Jinja2 work with Django. Super easy and working everywhere even on AppEngine:
http://bitbucket.org/trevor/chouwa/

Redliner</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I use this connector to make Jinja2 work with Django. Super easy and working everywhere even on AppEngine:<br />
<a href="http://bitbucket.org/trevor/chouwa/" rel="nofollow">http://bitbucket.org/trevor/chouwa/</a></p>
<p>Redliner</p>
]]></content:encoded>
	</item>
</channel>
</rss>
