I just re-created my satchmo project following Bruce's tutorial:
http://gosatchmo.com/starting-a-new-store-real-world-project-layout
After loading my data and modifying the TEMPLATE_DIRS variable in
local_settings.py as mentioned in the Tutorial, I tried running my
project and none of the default templates were loaded. My code for
TEMPLATE_DIRS looks like this:
DIRNAME = os.path.abspath(os.path.dirname(__file__))
SATCHMO_DIRNAME = '/Library/Frameworks/Python.framework/Versions/2.5/
lib/python2.5/site-packages/satchmo'
TEMPLATE_DIRS = (
os.path.join(DIRNAME, 'templates'),
os.path.join(SATCHMO_DIRNAME, 'templates'),
)
Any ideas what might be wrong? The SATCHMO_DIRNAME points to my
installation of satchmo in my site-packages directory (OSX Leopard).
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Satchmo users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/satchmo-users?hl=en
-~----------~----~----~----~------~----~------~--~---