Re: Problem with Reverse

2009-07-06 Thread Rodrigue
Are there other urls defined in your file? If so, do the views they reference exist already? Django tries to load all the views it finds in all url files defined. It seems to me that you may have a url mapped to a 'select' view but that view does not exist. On Jul 6, 12:32 pm, Phil wrote: > Hi,

Re: Problem with Reverse

2009-07-06 Thread Phil
Hi, agree with that - does it work if you go through the url first? Cheers, Phil On Jul 6, 3:21 am, Karen Tracey wrote: > On Sat, Jul 4, 2009 at 11:44 PM, tam...@gmail.com wrote: > > > Hi, > > > I am trying to decouple my views.py with respect to my url.py but I > > have a problem. > > > -I d

Re: Problem with Reverse

2009-07-05 Thread Karen Tracey
On Sat, Jul 4, 2009 at 11:44 PM, tam...@gmail.com wrote: > > Hi, > > I am trying to decouple my views.py with respect to my url.py but I > have a problem. > > -I do have a principal url.py which contains and include to a second > url.py: > urlpatterns = patterns('', > (r'^users/', include('myapp.

Re: Problem with reverse lookups in Weblog example

2008-08-27 Thread Rodney Topor
OK, I solved my problem. I now understand reverse lookups well enough to be embarrassed by the code below. Sorry to have bothered you. Rodney On Aug 27, 10:39 am, Rodney Topor <[EMAIL PROTECTED]> wrote: > Hi.  Sorry to botther the group again.  I'm working through the Weblog > example in 'Prac