1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-02 23:48:47 +00:00

i18n for org email

This commit is contained in:
zhengxie
2012-10-30 19:37:47 +08:00
parent e9fd5d7b0e
commit 3ad2a2cf0a
7 changed files with 126 additions and 35 deletions

View File

@@ -6,7 +6,7 @@ and returns a dictionary to add to the context.
These are referenced from the setting TEMPLATE_CONTEXT_PROCESSORS and used by
RequestContext.
"""
from settings import SEAFILE_VERSION, SEAHUB_TITLE
from settings import SEAFILE_VERSION, SEAHUB_TITLE, SITE_NAME, SITE_BASE
try:
from settings import BUSINESS_MODE
except ImportError:
@@ -33,5 +33,6 @@ def base(request):
'cloud_mode': request.cloud_mode,
'org': org,
'base_template': base_template,
'site_name': SITE_NAME,
}