--Major edit --

I have a new Django application I am working on.

I have the following directory structure.

Django/
  appc
  project1
    appA
    appB

I would like to use the settings.py from project1 in appc. I have added the appc application to the INSTALLED_APPS under project1. I am using WSGI so I added the Django/appc directory to the python path as well.

My problem comes in when I try and extend a template from appA I am not able to load any of the Variables defined in the project1 settins.py. So I guess my question is then how can I ensure that appC is going to source the settings from appB?

link|improve this question

80% accept rate
1  
settings.py is never used with apps. – Ignacio Vazquez-Abrams May 18 '11 at 17:09
Ignacio, thank you, I guess I should fix that question! – grantk May 18 '11 at 17:12
feedback

1 Answer

up vote 3 down vote accepted

Django apps that require access to the project settings should import and use django.conf.settings.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.