Re: django calls several views at once.

2009-03-23 Thread igor.potapenko
Sorry for many-words and many of unusable infromation. In my example there's calling one view(cat2_view), which just print all Cats objects(in it not creating any objects!). After calling that view - one object creates. I say more. It suppress exeption from it. I had a concern in it. It must be

Re: [urls bug?] django calls several views at once.

2009-03-22 Thread Malcolm Tredinnick
On Sat, 2009-03-21 at 23:18 -0700, igor.potapenko wrote: > Is it normal behavior? > In example below, I try to call myapp2.view.cat2_view through "/a/" > url-path. It's calling, however another views myapp1.view.cat1_viewis > also calling with it at same time. Django doesn't call more than one vi

[urls bug?] django calls several views at once.

2009-03-22 Thread igor.potapenko
Is it normal behavior? In example below, I try to call myapp2.view.cat2_view through "/a/" url-path. It's calling, however another views myapp1.view.cat1_viewis also calling with it at same time. F:\igor\apps\devel\django\temp>django-admin.py startproject myproj F:\igor\apps\devel\djang