I'm trying to find a way, how to tell the Django where static files like css are stored. The problem is that it can't find the static folder probably. I've set the settings.py file already but it did not help.
SETTINGS.PY:
STATIC_URL = '/static/'
INSTALLED_APPS = (
...
'django.contrib.staticfiles',
)
BASE.HTML:
...
...
<title>Rozcestník</title>
<!-- Bootstrap core CSS -->
{% load static %}
<link href="{% static "css/bootstrap.min.css" %}" rel="stylesheet">
...
Where is the problem?
