> Of the other two, one claims to be Django 1.0 and one claims to be
> Django SVN trunk. Assuming they are what they claim to be, which one
> is the latest depends on whether the trunk checkout is from before or
> after 1.0. You might get a clue by looking at django/__init__.py in
> both and checking the value of VERSION.
Thanks Carl and Karen:
All the duplicates were 1.0 final.
* I removed all django directories except - /usr/lib/python2.3/site-
packages/django/
* Inspecting active __init__.py file I verify Version 1.0. Final.
* In the .../django directory I see a broken link called
"django" pointing to "pwd/django-trunk/django"
I rename it to get it out of the way.
* Editing my urls.py I comment out the old admin line and uncomment
the new.
# (r'^admin/', include('django.contrib.admin.urls')),
(r'^admin/(.*)', admin.site.root),
* My first 4 attempts to go to www.mysite.com/admin/ return
TemplateSyntaxError at /admin/
Caught an exception while rendering: No module named urls
* The debug page points to
.../django/contrib/admin/templates/admin/base.html, error at line 25
line 25 has {% url django-admindocs-docroot as docsroot %}
highlighted in red.
same behavior with both IE or Firefox/Mozilla.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---