I'm new in Django and get problem. I have:
STATIC_URL = '/static/'
STATIC_ROOT = '/static/'
at my settings.py, have Project/mainapp/static folder and css/header.css inside that folder. Also i have
{% load staticfiles %}
<link rel="stylesheet" href="{% static 'css/header.css' %}" type="text/css">
at my header html. Browser tries localhost/static/css/header.css but find nothing there. What am i doing wrong? Thanks!
python manage.py collectstatic?