<?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: Customizing Django&#039;s Admin Templates and Media When Using the Built-In Development Web Server</title>
	<atom:link href="http://iamzed.com/2008/12/11/customizing-django-admin-templates-and-media/feed/" rel="self" type="application/rss+xml" />
	<link>http://iamzed.com/2008/12/11/customizing-django-admin-templates-and-media/</link>
	<description>All the Good Titles Were Taken</description>
	<lastBuildDate>Fri, 25 Nov 2011 04:19:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Roman</title>
		<link>http://iamzed.com/2008/12/11/customizing-django-admin-templates-and-media/#comment-162</link>
		<dc:creator><![CDATA[Roman]]></dc:creator>
		<pubDate>Thu, 13 May 2010 22:39:21 +0000</pubDate>
		<guid isPermaLink="false">http://iamzed.com/?p=1266#comment-162</guid>
		<description><![CDATA[Good post. But if you try to change from step2:
ADMIN_MEDIA_PREFIX = &#039;http://127.0.0.1:8000/media/admin/&#039;
to ADMIN_MEDIA_PREFIX = &#039;/media/admin/&#039;

you would gived no media. Page on without css, js, images for it way.

I got it but documentation django recomended like: ADMIN_MEDIA_PREFIX = &#039;/media/admin/&#039;

Thanks]]></description>
		<content:encoded><![CDATA[<p>Good post. But if you try to change from step2:<br />
ADMIN_MEDIA_PREFIX = &#8216;<a href="http://127.0.0.1:8000/media/admin/" rel="nofollow">http://127.0.0.1:8000/media/admin/</a>&#8216;<br />
to ADMIN_MEDIA_PREFIX = &#8216;/media/admin/&#8217;</p>
<p>you would gived no media. Page on without css, js, images for it way.</p>
<p>I got it but documentation django recomended like: ADMIN_MEDIA_PREFIX = &#8216;/media/admin/&#8217;</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scot Hacker</title>
		<link>http://iamzed.com/2008/12/11/customizing-django-admin-templates-and-media/#comment-161</link>
		<dc:creator><![CDATA[Scot Hacker]]></dc:creator>
		<pubDate>Fri, 15 Jan 2010 04:09:42 +0000</pubDate>
		<guid isPermaLink="false">http://iamzed.com/?p=1266#comment-161</guid>
		<description><![CDATA[This is brilliant, thanks so much. The one thing I didn&#039;t like in this solution was that you&#039;re hard-coding a full path in urls.py, which doesn&#039;t work across dev and production environments. To fix this I put this in local_settings.py:

LOCAL_GRAPPELLI_MEDIA = &#039;/path/to/grappelli/media&#039;

and then in urls.py:

{&#039;document_root&#039;: settings.LOCAL_GRAPPELLI_MEDIA}]]></description>
		<content:encoded><![CDATA[<p>This is brilliant, thanks so much. The one thing I didn&#8217;t like in this solution was that you&#8217;re hard-coding a full path in urls.py, which doesn&#8217;t work across dev and production environments. To fix this I put this in local_settings.py:</p>
<p>LOCAL_GRAPPELLI_MEDIA = &#8216;/path/to/grappelli/media&#8217;</p>
<p>and then in urls.py:</p>
<p>{&#8216;document_root&#8217;: settings.LOCAL_GRAPPELLI_MEDIA}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Scott</title>
		<link>http://iamzed.com/2008/12/11/customizing-django-admin-templates-and-media/#comment-160</link>
		<dc:creator><![CDATA[Chris Scott]]></dc:creator>
		<pubDate>Mon, 16 Mar 2009 12:27:34 +0000</pubDate>
		<guid isPermaLink="false">http://iamzed.com/?p=1266#comment-160</guid>
		<description><![CDATA[@patrick: it looks like this will be possible in v1.6 of subversion according to &lt;a href=&quot;http://blogs.open.collab.net/svn/2009/03/sparse-directories-now-with-exclusion.html&quot; rel=&quot;nofollow&quot;&gt;this blog post&lt;/a&gt;.]]></description>
		<content:encoded><![CDATA[<p>@patrick: it looks like this will be possible in v1.6 of subversion according to <a href="http://blogs.open.collab.net/svn/2009/03/sparse-directories-now-with-exclusion.html" rel="nofollow">this blog post</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: patrick</title>
		<link>http://iamzed.com/2008/12/11/customizing-django-admin-templates-and-media/#comment-159</link>
		<dc:creator><![CDATA[patrick]]></dc:creator>
		<pubDate>Sat, 14 Mar 2009 17:53:28 +0000</pubDate>
		<guid isPermaLink="false">http://iamzed.com/?p=1266#comment-159</guid>
		<description><![CDATA[I&#039;ve been rethinking this issue lately. Although I´m no expert with using subversion, isn´t it possible to remove a directory (e.g. /media/) from future svn-updates? That´d ensure that django-updates won´t be broken when using Grappelli ... I&#039;ve just checked the subversion online-docs, but unfortunately I didn´t find an answer.]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve been rethinking this issue lately. Although I´m no expert with using subversion, isn´t it possible to remove a directory (e.g. /media/) from future svn-updates? That´d ensure that django-updates won´t be broken when using Grappelli &#8230; I&#8217;ve just checked the subversion online-docs, but unfortunately I didn´t find an answer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phillc</title>
		<link>http://iamzed.com/2008/12/11/customizing-django-admin-templates-and-media/#comment-158</link>
		<dc:creator><![CDATA[phillc]]></dc:creator>
		<pubDate>Thu, 18 Dec 2008 17:16:10 +0000</pubDate>
		<guid isPermaLink="false">http://iamzed.com/?p=1266#comment-158</guid>
		<description><![CDATA[finally got it to work.

it is important to make it the last (or in my case, second) template directory listed... so that, in your regular template directory, you can override the shortcut/navigation html.]]></description>
		<content:encoded><![CDATA[<p>finally got it to work.</p>
<p>it is important to make it the last (or in my case, second) template directory listed&#8230; so that, in your regular template directory, you can override the shortcut/navigation html.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Scott</title>
		<link>http://iamzed.com/2008/12/11/customizing-django-admin-templates-and-media/#comment-157</link>
		<dc:creator><![CDATA[Chris Scott]]></dc:creator>
		<pubDate>Wed, 17 Dec 2008 01:20:23 +0000</pubDate>
		<guid isPermaLink="false">http://iamzed.com/?p=1266#comment-157</guid>
		<description><![CDATA[@Malcolm: yikes! Thanks for pointing that out. The train has been put back on track :-)]]></description>
		<content:encoded><![CDATA[<p>@Malcolm: yikes! Thanks for pointing that out. The train has been put back on track <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Malcolm Tredinnick</title>
		<link>http://iamzed.com/2008/12/11/customizing-django-admin-templates-and-media/#comment-156</link>
		<dc:creator><![CDATA[Malcolm Tredinnick]]></dc:creator>
		<pubDate>Wed, 17 Dec 2008 01:14:43 +0000</pubDate>
		<guid isPermaLink="false">http://iamzed.com/?p=1266#comment-156</guid>
		<description><![CDATA[Not enough gets written about admin customisations. Nice piece.

There&#039;s been some kind of train-wreck in your URL patterns, though. Somebody&#039;s run through and dropped in some HTML tags (an &quot;em&quot; element) in place of reg-exp strings.]]></description>
		<content:encoded><![CDATA[<p>Not enough gets written about admin customisations. Nice piece.</p>
<p>There&#8217;s been some kind of train-wreck in your URL patterns, though. Somebody&#8217;s run through and dropped in some HTML tags (an &#8220;em&#8221; element) in place of reg-exp strings.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Scott</title>
		<link>http://iamzed.com/2008/12/11/customizing-django-admin-templates-and-media/#comment-155</link>
		<dc:creator><![CDATA[Chris Scott]]></dc:creator>
		<pubDate>Fri, 12 Dec 2008 13:38:09 +0000</pubDate>
		<guid isPermaLink="false">http://iamzed.com/?p=1266#comment-155</guid>
		<description><![CDATA[@patrick: cool, thanks!]]></description>
		<content:encoded><![CDATA[<p>@patrick: cool, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: patrick</title>
		<link>http://iamzed.com/2008/12/11/customizing-django-admin-templates-and-media/#comment-154</link>
		<dc:creator><![CDATA[patrick]]></dc:creator>
		<pubDate>Fri, 12 Dec 2008 13:19:09 +0000</pubDate>
		<guid isPermaLink="false">http://iamzed.com/?p=1266#comment-154</guid>
		<description><![CDATA[this is a very good point. we personally use the latest official django-version with grappelli. using an svn checkout probably breaks the grappelli-styles (because of some smaller changes made by wilson recently). nevertheless, I´d definitely prefer a solution where we don´t have to override djangos media- and templates-directory.
I´ll include a link to this article to the grappelli-documentation ...]]></description>
		<content:encoded><![CDATA[<p>this is a very good point. we personally use the latest official django-version with grappelli. using an svn checkout probably breaks the grappelli-styles (because of some smaller changes made by wilson recently). nevertheless, I´d definitely prefer a solution where we don´t have to override djangos media- and templates-directory.<br />
I´ll include a link to this article to the grappelli-documentation &#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

