Boas Malta,
Os ficheiros css do bootstrap não carregam, está a devolver o erro 404:
[07/Apr/2018 20:40:33] "GET /static/styles/main.css HTTP/1.1" 404 1669
[07/Apr/2018 20:40:33] "GET /static/styles/bootstrap.css HTTP/1.1" 404 1684
Meu código do index.html:
{% load staticfiles %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Teste Django</title>
<link rel="stylesheet" href="{% static "styles/bootstrap.css" %}">
<link rel="stylesheet" href="{% static "styles/main.css" %}">
</head>
<body>
<h1>Seja benvido 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>Nenehum perfil encontrado</p>
{% endif %}
</body>
</html>
Podem por favor ajudar?
Tks