Re: "Includes" directory?

2008-06-03 Thread James Matthews
and Welcome to Django! On Tue, Jun 3, 2008 at 9:05 AM, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > > > On 02-Jun-08, at 11:59 PM, Huuuze wrote: > > > I'm new to Django, so please be gentle. Basic question: when > > developing a web app, I've typically c

Re: "Includes" directory?

2008-06-03 Thread Kenneth Gonsalves
On 02-Jun-08, at 11:59 PM, Huuuze wrote: > I'm new to Django, so please be gentle. Basic question: when > developing a web app, I've typically created an "includes" directory > which stores commonly used functions or methods. From a best practice > standpoint, is it rec

Re: "Includes" directory?

2008-06-02 Thread James Bennett
On Mon, Jun 2, 2008 at 1:29 PM, Huuuze <[EMAIL PROTECTED]> wrote: > I'm new to Django, so please be gentle. Basic question: when > developing a web app, I've typically created an "includes" directory > which stores commonly used functions or methods. From a b

Re: "Includes" directory?

2008-06-02 Thread Juanjo Conti
I do it like that. Remember to put a __init__.py file inside your 'includes' directory so you can handle it as a package. Juanjo On Mon, Jun 2, 2008 at 3:29 PM, Huuuze <[EMAIL PROTECTED]> wrote: > > I'm new to Django, so please be gentle. Basic question: when > developing

"Includes" directory?

2008-06-02 Thread Huuuze
I'm new to Django, so please be gentle. Basic question: when developing a web app, I've typically created an "includes" directory which stores commonly used functions or methods. From a best practice standpoint, is it recommended that I create an "includes" directory (not ap