Jun 272009
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.
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.
