I have two projects that work together. Lets call them Extranet_site and Public_site. Most of the functionality was developed for Extranet_site, but we wanted to capture requests from the public, so we set up Public_site and then just attached to some of the functionality in Extranet_site.
A scenario would be that : 1. Someone creates a request on the Extranet_site or via the Public_site 2. This then gets processed using the code within Extranet_site, regardless of where the request came from. 3. An email gets sent to the relevant field manager to deal with it. The email templates are stored in Extranet_site, in the same place that the processing code it. However, the requests that come via the Public_site break the template URL lookups, because they are looking at the Public_site URLs.py rather than the Extranet_site URLs.py. What is the best way for dealing with situations like these? I could just hard code the templates with the url. Some other solution? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.