TemplateDoesNotExist в / chat_app/dashboard.html

Я создаю приложение для чата и столкнулся с некоторыми проблемами. Я думаю, что у меня уже была такая проблема, но я не могу понять, как ее решить. Django сидит, ошибка в том, что я импортирую bootstrap в базовый HTML. Я проверил, что включил DIRы шаблонов. Любая помощь будет признательна.

base.html

<!DOCTYPE html>
{% load static %}
<html lang="en" dir="ltr">
  <head>
    <!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">

<!-- Optional theme -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap-theme.min.css" integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous">

<!-- Latest compiled and minified JavaScript -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
    <meta charset="utf-8">
    <title>Chatter</title>
    <link rel="stylesheet" href={% static "css/master.css" %}>
  </head>
  <body>
{% block content %}
{% endblock %}
  </body>
</html>

setting.py

Вернуться на верх