Shawn see below.

from django.conf.urls.defaults import *
from mysite.my_clts import views
#from mysite.books import views


# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
    (r'^my_clts/$', 'my_clts.views.index'),
    (r'^my_clts/(?P<group_id>\d+)/$', 'my_clts.views.detail'),
    (r'^my_clts/record/$', 'my_clts.views.record'),
    (r'^my_clts/display_meta/$', 'my_clts.views.display_meta'),
    (r'^my_clts/search-form/$', 'books.views.search_form'),
    (r'^my_clts/search/(?P<request.GET>\d+)/$', 'books.views.search'),
    (r'^admin/', include(admin.site.urls)),
)

On Feb 11, 11:36 am, Shawn Milochik <sh...@milochik.com> wrote:
> Would you post your urls.py? It looks like the problem is in there.

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