On 2/3/06, Siah <[EMAIL PROTECTED]> wrote:
> I have lots of views. So, I separated them into sections. I want to
> package them together with the views they are associated with. Is it
> incorrect design decision to place my URLs in the same file as my View?
> Does it make it any slower? What about my manipulators + views + URL in
> the same file? Notice that these view files are relatively short, since
> they represent pieces of the software.
>
> I am not a big fan of too many files; it makes the whole show a bit too
> confusing :)

Feel free to layout URLs, views and manipulators any way you want.
There's no restriction on where they live, as long as they're
somewhere on your Python path. The only requirement is that the module
that contains the URLconf needs to have three module-level variables:
urlpatterns, handler404 and handler500.

Adrian

--
Adrian Holovaty
holovaty.com | djangoproject.com | chicagocrime.org

Reply via email to