On Fri, Feb 12, 2010 at 4:34 PM, Umapathy S <nsupa...@gmail.com> wrote:

> Hello,
>
> I am looking for the admin site url name to be included as a link in a home
> page template.
>
> I looked at contrib/admin/sites.py
>
> AdminSite sets self.name which is then passed to
>
>        # Admin-site-wide views.
>         urlpatterns = patterns('',
>             url(r'^$',
>                 wrap(self.index),
>                 name='%sadmin_index' % self.name),
>
>
What level of code are you running? That code you show was added during the
development of 1.1 in r9739:

http://code.djangoproject.com/changeset/9739

but it was changed before the release of 1.1, in r11250:

http://code.djangoproject.com/changeset/11250

So you appear to be running an SVN checkout from sometime between January
and July of 2009? If so, it's probably in your best interest to update to an
official released version.


>
> What is the self.name passed to AdminSite constructor.  I tried
>         <li><a href="{% url admin_index %}"> Admin </a></li>
>
> It throws a template syntax error.
>
> Exception Value:
>
> Caught an exception while rendering: Reverse for 'admin_index' with arguments 
> '()' and keyword arguments '{}' not found.
>
>
>
> Any help much appreciated.
>

I don't know how to get this working on the level of code you have. To do it
with 1.1 or higher, you'd want to reverse admin:index, as documented here:

http://docs.djangoproject.com/en/dev/ref/contrib/admin/#reversing-admin-urls

Karen

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to