Bom dia, podem me ajudar com esse erro por favor?
Quando eu coloco {% load staticfiles %} aparece erro na linha <!DOCTYPE html> e as barras do , especificamente entre style e bootstrape.css apresentam erro.
O css não funciona.
index.html
{% load staticfiles %}
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link href="{% static "styles/bootstrap.css" %}" rel="stylesheet">
<link href="{% static "styles/main.css" %}" rel="stylesheet">
<title>ConnectedIn</title>
</head>
<body>
<div class="container">
<div class="header">
<ul class="nav nav-pills pull-right">
<li class=""><a href="{% url 'index' %}">Nome</a></li>
<li class=""><a href="/logout/">Logout</a></li>
</ul>
<h3 class="text-muted">ConnectedIn</h3>
</div>
<h1>Bem vindo ao ConnectedIn</h1>
{% if perfis %}
<ul>
{% for perfil in perfis %}
<li>
<a href="{% url 'exibir' perfil.id %}">{{perfil.nome}} / {{perfil.email}}</a>
</li>
{% endfor %}
</ul>
{% else %}
<p>Nenhum perfil encontrado</p>
{% endif %}
</body>
</html>
Erro - ( Inspecionar )
Failed to load resource: the server responded with a status of 404 (NOT FOUND)
2bootstrap.css Failed to load resource: the server responded with a status of 404 (NOT FOUND)
main.css Failed to load resource: the server responded with a status of 404 (NOT FOUND)
Elton