我有一个像这样的树结构:
.
|-- backend.py
|-- backend.pyc
|-- functions.py
|-- functions.pyc
|-- __init__.py
|-- __init__.pyc
|-- models.py
|-- models.pyc
|-- templates
| |-- css
| | |-- PIE.htc
| | `-- style.css
| |-- form.html
| |-- index.html
| |-- index.html~
| |-- reform.html
| |-- style.css
| |-- synced.html
| |-- test.html
| `-- thanks.html
|-- tests.py
|-- views.py
`-- views.pyc
我在 STATICFILES_DIRS 中给出了路径:
STATICFILES_DIRS = '/home/zurelsoft/workspace/genelaytics/fileupload/templates/css'
每当我打开模板 index.html 时,它都不会读取 css。我究竟做错了什么?
模板中的链接标签:
<title>.:: Genalytics ::.</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>