Re: Issue with newforms-admin

2008-05-23 Thread Brandon Taylor
OMG. I can't believe I missed the trailing slash when I set up the get_absolute_url for the results page. I need sleep. Thanks Karen, Brandon On May 22, 4:19 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > On Thu, May 22, 2008 at 3:21 PM, Brandon Taylor <[EMAIL PROTECTED]> > wrote: > > > > > Hi

Re: Issue with newforms-admin

2008-05-22 Thread Karen Tracey
On Thu, May 22, 2008 at 3:21 PM, Brandon Taylor <[EMAIL PROTECTED]> wrote: > > Hi everyone, > > I'm having a problem with an url pattern. When I try to do a custom > view using the newforms admin, such as: > > (r'^admin/surveys/survey/answers/(?P[-\w]+)/$', > 'app.surveys.views.answers_list'), >

Issue with newforms-admin

2008-05-22 Thread Brandon Taylor
Hi everyone, I'm having a problem with an url pattern. When I try to do a custom view using the newforms admin, such as: (r'^admin/surveys/survey/answers/(?P[-\w]+)/$', 'app.surveys.views.answers_list'), If I remove: (r'^admin/(.*)', admin.site.root), #the default routing for newforms-