Thought about that, but that's why I put it just after the empty
pattern.  My full pattern list is this:

urlpatterns = patterns('',
     (r'^admin/myapp/mymodel/', 'myapp.views.viewmodels'),
     (r'^admin/print/(?P<doc>[-\w]+)/(?P<id>\d+)',
'satchmo.shipping.views.displayDoc'),
     (r'^admin/$', 'satchmo.shop.views.admin-portal.home'),
## all admin includes before this line!!! 
     (r'^admin/', include('django.contrib.admin.urls')),
#        (r'/$', include('satchmo.shop.urls')),
     (shopregex, include('satchmo.shop.urls')),
     (myRegex, 'myapp.views.get_object'),

)

Does anyone need more info?  Because I'm stuck.

On Apr 14, 9:53 am, "Todd O'Bryan" <[EMAIL PROTECTED]> wrote:
> Just a guess, but if the admin is enabled, that pattern is probably
> checked first. It's never getting to your pattern because it's matching
> the admin pattern.
>
> Todd
>
> On Sat, 2007-04-14 at 09:34 -0500, Mike Hostetler wrote:
> > I've been looking at this for a couple of hours and I have no idea
> > what is happening.
>
> > In my urls.py I have this:
>
> > urlpatterns = patterns('',
> >      (r'^admin/myapp/mymodel/', ',myapp.views.viewmodels'),
> >       ....
>
> > When I go tohttp://localhost:8000/admin/myapp/mymodel
> > it has ignored my pattern and went to the default admin change_list view.
>
> > How do I know this?  There is no views.pyc file, and I put in an error
> > in the myapp.views to make sure I knew if I hit it.
>
> > Anyone please let me know what did wrong . .


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

Reply via email to