Despite possibly working with different app_labels, I believe the point
still stands that if the storage and invoice apps share a lot of
functionality among vendors, they should just be 'invoice' and 'storage'
and allow for pluggable companies.
Cheers,
AT
On Mon, May 13, 2013 at 12:02 PM, Tom Ev
On Fri, May 10, 2013 at 8:22 PM, Valder Gallo wrote:
> Nops ... when i used
>
> INSTALLED_APP = {
> 'invoice.sony',
> 'invoice.samsung',
> 'storage.sony',
> 'storage.samsung',
> }
>
> storage.samsung.models is overrind invoice.samsung.models
>
> :(
>
Does it help if they have distinct ap
Granted this structure doesn't seem reasonable. Each manufacturer shouldn't
be a separate app, but rather "backends" to generic storage or invoice apps.
So you only need
INSTALLED_APPS = (
# ...
'storage',
'invoice'
)
And then work from there. The apps themselves should be able to reg
tnx :D
On Fri, May 10, 2013 at 4:31 PM, Shawn Milochik wrote:
> It is not possible.
>
> https://groups.google.com/forum/#!msg/django-users/AMYLfQo6Ba4/Y-57B0i7qy4J
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To unsubscribe from th
It is not possible.
https://groups.google.com/forum/#!msg/django-users/AMYLfQo6Ba4/Y-57B0i7qy4J
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to django-users+uns
Nops ... when i used
INSTALLED_APP = {
'invoice.sony',
'invoice.samsung',
'storage.sony',
'storage.samsung',
}
storage.samsung.models is overrind invoice.samsung.models
:(
On Fri, May 10, 2013 at 4:08 PM, Thiago Avelino wrote:
> Yep, add in installed_app:
>
> application_name.stor
Yep, add in installed_app:
application_name.storage.sony
application_name.storage.samsung
Cheers,
Thiago Avelino
On Fri, May 10, 2013 at 3:19 PM, Valder Gallo wrote:
> I cant have 2 subapp with same name in Django ?
>
> Ex.
>
> invoice/sony
> invoice/samsung
>
> storage/sony
> storage/sams
7 matches
Mail list logo