赞
踩
在主目录下新建static文件夹
下设css,js,img等文件夹
STATIC_URL = '/static/'
STATICFILES_DIRS = [
os.path.join(BASE_DIR,'static')
]
在html文件开头加载
{% load static %}
<link rel = "stylesheet" href = "{% static "css/mystyle.css" %}">
在主目录下新建common文件夹,下设__init__.py文件和templatetags文件夹。
templatetags文件夹下设__init__.py文件,
INSTALLED_APPS = [
‘common’,
]
from django import template
register = template.Library(
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。