Dear comrades

i'm using Django 1.1 with Postgres.

I got a following error

ImportError: No module named urls


 <!-- Header -->21    <div id="header">22        <div id="branding">23
       {% block branding %}{% endblock %}24        </div>25        {%
if user.is_authenticated and user.is_staff %}26        <div
id="user-tools">27            {% trans 'Welcome,' %}28
<strong>{% firstof user.first_name user.username %}</strong>.29
    {% block userlinks %}30                {% url
django-admindocs-docroot as docsroot %}31                {% if
docsroot %}32                    <a href="{{ docsroot }}">{% trans
'Documentation' %}



But i already installed djangodocs on my INSTALLED_APPS (

   'django.contrib.admindocs',

)

 and in my urls.py


    (r'^admin/doc/', include('django.contrib.admindocs.urls')),

    (r'^admin/', include(admin.site.urls)),


So have you any solution ?


Thanks

Tsolmon.

-- 
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