我在这里找到了django-oscar的主题:https://github.com/eggforsale/oscar-eggs-theme,但是没有可用的文档来安装它。我尝试替换oscar/templates目录中的相应文件,但不起作用。
发布于 2020-06-13 17:53:23
确保已将setting.py中的oscar模板文件夹更新为文档:
location = lambda x: os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', x)
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
location('templates'), # templates directory of the project
],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
...
'oscar.core.context_processors.metadata',
],
},
},
]https://django-oscar.readthedocs.io/en/latest/howto/how_to_handle_statics.html
https://stackoverflow.com/questions/30569478
复制相似问题