将static 内置到django项目中
这样就不需要每次在模板中使用到static 都需要先{% load static %}一下了,可以直接使用
在settings.py文件中的TEMPLATES中的OPTIONS字典中,添加多如下值
'builtins': ['django.templatetags.static']
整体看起来是这样的
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')]
,
'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',
],
'builtins': ['django.templatetags.static']
},
},
]