<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Oom &#187; admin</title>
	<atom:link href="http://web.pyncus.com/tag/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://web.pyncus.com</link>
	<description>Build and Share Web Technology</description>
	<lastBuildDate>Mon, 25 Jan 2010 18:19:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>admin/  vs. admin/(.*)</title>
		<link>http://web.pyncus.com/2009/06/27/admin-vs-admin/</link>
		<comments>http://web.pyncus.com/2009/06/27/admin-vs-admin/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 15:17:56 +0000</pubDate>
		<dc:creator>weboom</dc:creator>
				<category><![CDATA[django]]></category>
		<category><![CDATA[admin]]></category>

		<guid isPermaLink="false">http://weboom.wordpress.com/?p=138</guid>
		<description><![CDATA[1. (r'^admin/', admin.site.root) 2. (r'^admin/(.*)', admin.site.root) If you type in browser /admin/xx/ with 1, you will get the below error: root() takes exactly 3 arguments (2 given) So, use 2.]]></description>
			<content:encoded><![CDATA[<pre>1. (r'^admin/', admin.site.root)
<pre>2. (r'^admin/(.*)', admin.site.root)</pre>
<p>If you type in browser<br />
/admin/xx/ with 1, you will get the below error:</p>
<pre>
root() takes exactly 3 arguments (2 given)</pre>
<p>So, use 2.</pre>
]]></content:encoded>
			<wfw:commentRss>http://web.pyncus.com/2009/06/27/admin-vs-admin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is for list_filter ?</title>
		<link>http://web.pyncus.com/2009/06/27/what-is-for-list_filter/</link>
		<comments>http://web.pyncus.com/2009/06/27/what-is-for-list_filter/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 06:54:22 +0000</pubDate>
		<dc:creator>weboom</dc:creator>
				<category><![CDATA[django]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[list_filter]]></category>

		<guid isPermaLink="false">http://weboom.wordpress.com/?p=128</guid>
		<description><![CDATA[In admin interface list_filter provides an easy access. ------ e.g., list_filter = ('pub_date', 'enable_comments')]]></description>
			<content:encoded><![CDATA[<pre><code><span>In admin interface
list_filter
provides an easy access.

------
e.g.,

</span><span>list_filter</span> <span>=</span> <span>(</span><span>'pub_date'</span><span>,</span> <span>'enable_comments'</span><span>)</span></code></pre>
]]></content:encoded>
			<wfw:commentRss>http://web.pyncus.com/2009/06/27/what-is-for-list_filter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is for search_fields?</title>
		<link>http://web.pyncus.com/2009/06/27/what-is-for-search_fields/</link>
		<comments>http://web.pyncus.com/2009/06/27/what-is-for-search_fields/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 06:52:44 +0000</pubDate>
		<dc:creator>weboom</dc:creator>
				<category><![CDATA[django]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[search_fields]]></category>

		<guid isPermaLink="false">http://weboom.wordpress.com/?p=125</guid>
		<description><![CDATA[In admin interface, search_fields indicates the area for search. ------------ e.g., search_fields = ('title', 'slug', 'body')]]></description>
			<content:encoded><![CDATA[<pre><code><span>In admin interface,
search_fields
indicates the area for search.

------------
e.g.,

search_fields</span> <span>=</span> <span>(</span><span>'title'</span><span>,</span> <span>'slug'</span><span>,</span> <span>'body'</span><span>)
</span>

</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://web.pyncus.com/2009/06/27/what-is-for-search_fields/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is for list_display ?</title>
		<link>http://web.pyncus.com/2009/06/27/what-is-for-list_display/</link>
		<comments>http://web.pyncus.com/2009/06/27/what-is-for-list_display/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 06:49:13 +0000</pubDate>
		<dc:creator>weboom</dc:creator>
				<category><![CDATA[django]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[list_display]]></category>

		<guid isPermaLink="false">http://weboom.wordpress.com/?p=123</guid>
		<description><![CDATA[In admin interface, the element of list will be displayed. &#8212;&#8212;&#8212;&#8212;&#8212;- e.g., from django.contrib import admin from mailer.models import Message class MessageAdmin(admin.ModelAdmin): list_display = (&#8216;id&#8217;, &#8216;to_address&#8217;, &#8216;subject&#8217;, &#8216;when_added&#8217;, &#8216;priority&#8217;)]]></description>
			<content:encoded><![CDATA[<p>In admin interface,</p>
<p>the element of list will be displayed.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>e.g.,</p>
<p>from django.contrib import admin<br />
from mailer.models import Message</p>
<p>class MessageAdmin(admin.ModelAdmin):<br />
list_display = (&#8216;id&#8217;, &#8216;to_address&#8217;, &#8216;subject&#8217;, &#8216;when_added&#8217;, &#8216;priority&#8217;)</p>
]]></content:encoded>
			<wfw:commentRss>http://web.pyncus.com/2009/06/27/what-is-for-list_display/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why admin.site.register is needed for model?</title>
		<link>http://web.pyncus.com/2009/06/26/why-admin-site-register-is-needed-for-model/</link>
		<comments>http://web.pyncus.com/2009/06/26/why-admin-site-register-is-needed-for-model/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 22:42:28 +0000</pubDate>
		<dc:creator>weboom</dc:creator>
				<category><![CDATA[django]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[register]]></category>

		<guid isPermaLink="false">http://weboom.wordpress.com/?p=115</guid>
		<description><![CDATA[After you generate a model, if you register the model at admin site, admin can create data based on your model design (even if you haven&#8217;t built the input page yet.) &#8212;&#8212;&#8212;&#8212; e.g., from django.contrib import admin from yourapp.models import Post class PostAdmin(admin.ModelAdmin): prepopulated_fields = {&#8216;slug&#8217;: (&#8216;title&#8217;,)} admin.site.register(Post, PostAdmin)]]></description>
			<content:encoded><![CDATA[<p>After you generate a model, if you register the model at admin site,</p>
<p>admin can create data based on your model design (even if you haven&#8217;t built the input page yet.)</p>
<p>&#8212;&#8212;&#8212;&#8212;</p>
<p>e.g.,</p>
<p>from django.contrib import admin<br />
from yourapp.models import Post</p>
<p>class PostAdmin(admin.ModelAdmin):<br />
prepopulated_fields = {&#8216;slug&#8217;: (&#8216;title&#8217;,)}</p>
<p>admin.site.register(Post, PostAdmin)</p>
]]></content:encoded>
			<wfw:commentRss>http://web.pyncus.com/2009/06/26/why-admin-site-register-is-needed-for-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In urls.py please add</title>
		<link>http://web.pyncus.com/2009/06/26/in-urls-py-please-add/</link>
		<comments>http://web.pyncus.com/2009/06/26/in-urls-py-please-add/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 07:32:50 +0000</pubDate>
		<dc:creator>weboom</dc:creator>
				<category><![CDATA[django]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[ruls.py]]></category>

		<guid isPermaLink="false">http://weboom.wordpress.com/?p=82</guid>
		<description><![CDATA[from django.contrib import admin otherwise, django can&#8217;t understand (r&#8217;^admin/(.*)&#8217;, admin.site.root),]]></description>
			<content:encoded><![CDATA[<p>from django.contrib import admin</p>
<p>otherwise,</p>
<p>django can&#8217;t understand</p>
<p>(r&#8217;^admin/(.*)&#8217;, admin.site.root),</p>
]]></content:encoded>
			<wfw:commentRss>http://web.pyncus.com/2009/06/26/in-urls-py-please-add/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

