According to instructions, I've added a style.css file to BASE_DIR/polls/static/polls/ subdir and inserted
{% load staticfiles %}
<link rel="stylesheet" type="text/css" href="{% static 'polls/style.css' %}" />
into my polls/templates/polls/index.html
- however, it doesn't have any effect (i.e. the links in the poll list
aren't green), and when i look into the shell where Django development
server is running, i see
"GET /static/polls/style.css HTTP/1.1" 404 1649
so, it seems that the file cannot be accessed at all. But i'm at a loss of why it doesn't work :(
Any ideas?
best,