Hi all,
I'm sure I have a pretty simple problem...
here's my url.py file....
from django.conf.urls.defaults import *
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
# Example:
# (r'^ccu/', include('ccu.foo.urls')),
# Uncomment the admin/doc line below and add
'django.contrib.admindocs'
# to INSTALLED_APPS to enable admin documentation:
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
(r'^stories/$','ccu_gen.views.all_stories'),
(r'^stories/(?P<story_id>\d+)/$', 'ccu_gen.views.one_story'),
(r'^admin/', include(admin.site.urls)),
)
stories works fine, but for the admin url, I'm getting the error
__import__() argument 1 must be string, not instancemethod
any ideas?
Thanks!
--
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.