私はこのようなツリー構造を持っています:
.
|-- 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>