polls.static.style.cssli a { color: green}body { background: white url("images/p02.png") no-repeat right top}
模板中载入
polls.templates.polls.index.html {% load staticfiles %}index
效果:字体变绿色了,右边载入了一幅图
方法二: settings.py加设置mysite.settings.py STATIC_URL = '/static/'STATICFILES_DIRS = ( os.path.join(BASE_DIR, "static"),)
模板文件中加载
polls.templates.polls.index.htmlindex
二种方法都行,一个是绝对路径调用,另一个则是利用模板匹配
至此 django tutorial 全部讲完了