allow for a customized region on the receipt page that is microsite brand specific

This commit is contained in:
Chris Dodge
2014-10-30 22:17:02 -04:00
parent 074c09687c
commit 6fcfb2a6a3
2 changed files with 4 additions and 1 deletions

View File

@@ -63,7 +63,7 @@ def get_template_path(relative_path):
search_path = os.path.join(microsite_template_path, relative_path)
if os.path.isfile(search_path):
path = '{0}/templates/{1}'.format(
path = '/{0}/templates/{1}'.format(
get_value('microsite_name'),
relative_path
)