本文整理汇总了Python中unipath.Path.join方法的典型用法代码示例。如果您正苦于以下问题:Python Path.join方法的具体用法?Python Path.join怎么用?Python Path.join使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类unipath.Path
的用法示例。
在下文中一共展示了Path.join方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1:
# 需要导入模块: from unipath import Path [as 别名]
# 或者: from unipath.Path import join [as 别名]
STATIC_URL = '/assets/'
MEDIA_URL = '/media/'
# Templates Section
TEMPLATES_DATA = {}
TEMPLATES_DATA['base'] = 'templates/base'
TEMPLATES_DATA['accounts'] = 'templates/accounts'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': (
BASE_DIR.child('templates'),
BASE_DIR.join(TEMPLATES_DATA['base']),
BASE_DIR.join(TEMPLATES_DATA['accounts']),
),
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
"django.core.context_processors.media",
"django.core.context_processors.static",
],
},
},
]
示例2:
# 需要导入模块: from unipath import Path [as 别名]
# 或者: from unipath.Path import join [as 别名]
]
TEMP_DIRECTORY_HOMEPAGE = [
'templates/homepage',
]
TEMP_DIRECTORY_COMPANY_PROFILE = [
'templates/company/company_profile',
]
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': (
BASE_DIR.child('templates'),
BASE_DIR.join(TEMP_DIRECTORY_REGISTER),
BASE_DIR.join(TEMP_DIRECTORY_EMAILS),
BASE_DIR.join(TEMP_DIRECTORY_ADMIN),
BASE_DIR.join(TEMP_DIRECTORY_PRIVATE),
BASE_DIR.join(TEMP_DIRECTORY_Dashboard),
BASE_DIR.join(TEMP_DIRECTORY_Dashboard_other),
BASE_DIR.join(TEMP_DIRECTORY_Dashboard_DYNAMIC),
BASE_DIR.join(TEMP_DIRECTORY_Company),
BASE_DIR.join(TEMP_DIRECTORY_JOBS),
BASE_DIR.join(TEMP_DIRECTORY_EVALUATION),
BASE_DIR.join(TEMP_DIRECTORY_ANALYTICS),
BASE_DIR.join(TEMP_DIRECTORY_CANDIDATES),
BASE_DIR.join(TEMP_DIRECTORY_MESSAGES),
BASE_DIR.join(TEMP_DIRECTORY_USERMESSAGES),
BASE_DIR.join(TEMP_DIRECTORY_ADVERTISEMENT_ADMIN),
BASE_DIR.join(TEMP_DIRECTORY_HOMEPAGE),