Re: Using an application is more than one other application

2014-08-06 Thread Some Developer
On 06/08/2014 15:09, Collin Anderson wrote: I recommend in Application B's templates pulling in the data from Application A using an assignment tag. https://docs.djangoproject.com/en/dev/howto/custom-template-tags/#assignment-tags Otherwise, in Application B's views, you can always: from appa.

Re: Using an application is more than one other application

2014-08-06 Thread Collin Anderson
I recommend in Application B's templates pulling in the data from Application A using an assignment tag. https://docs.djangoproject.com/en/dev/howto/custom-template-tags/#assignment-tags Otherwise, in Application B's views, you can always: from appa.models import Message -- You received this mes