Re: How to create a app inside a app

2012-07-21 Thread Russell Keith-Magee
On Sat, Jul 21, 2012 at 8:46 PM, Melvyn Sopacua wrote: > On 21-7-2012 3:26, Russell Keith-Magee wrote: >> On Sat, Jul 21, 2012 at 3:32 AM, Nicolas Ardison >> wrote: >>> Hello, i was reading the Django documentation, and i have the following >>>

Re: How to create a app inside a app

2012-07-21 Thread Melvyn Sopacua
On 21-7-2012 3:26, Russell Keith-Magee wrote: > On Sat, Jul 21, 2012 at 3:32 AM, Nicolas Ardison > wrote: >> Hello, i was reading the Django documentation, and i have the following >> trouble that i'm not sure if django can solve it. I have a application >> called

Re: How to create a app inside a app

2012-07-20 Thread Russell Keith-Magee
On Sat, Jul 21, 2012 at 3:32 AM, Nicolas Ardison wrote: > Hello, i was reading the Django documentation, and i have the following > trouble that i'm not sure if django can solve it. I have a application > called "userArea" and i want to extend that app with more app

Re: How to create a app inside a app

2012-07-20 Thread Melvyn Sopacua
On 20-7-2012 21:32, Nicolas Ardison wrote: > [APP1] > > [subAPP1] > > [subAPP2] > Could i do something like this? anyone know where i can start reading about > this. Yes and no. You can, but within a project the last part of the python module path must be unique. So you cannot do:

How to create a app inside a app

2012-07-20 Thread Nicolas Ardison
Hello, i was reading the Django documentation, and i have the following trouble that i'm not sure if django can solve it. I have a application called "userArea" and i want to extend that app with more app isolated from the "main" apps. [DjangoProject] [APP1] [subAPP1] [subAPP2] [APP2]