On Wed, May 20, 2009 at 1:33 AM, Diogo Baeder <diogobae...@gmail.com> wrote:

>
> Hi, guys,
>
> I'm having an issue with the basic admin template at my project...
> basically, it says that it doesn't see an "urls" module, in a line that
> tries to include links to the admin documentation, but I've not
> activated the documentation! :-(
>

If you mean you are getting a TemplateSyntaxError that highlights this bit:

{% url django-admindocs-docroot as docsroot %}

of an admin template as where it is running into trouble, then the problem
is likely in your urls.py file(s).  The url template tag used there attempts
to do a reverse url mapping, and any attempt to do that requires that all of
your url mappings be valid -- point to actual views, etc.  If any of them
have an issue, you'll see an error.  So if that is what you are seeing,
double check that all your url mappings are correct.  If all look fine,
comment out all but the admin and see if that works, then add the others
back one by one to see where the problem is.

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