Django загружает HTML, но не сопрягает статический файл

У меня проблемы с обслуживанием статического файла (CSS) на моей HTML-странице. HTML загружается, но для CSS в консоли появляется следующая ошибка:

GET http://myip/static/registration/style.cc net::ERR_ABORTED 404 (Not found)

Вот как я говорю серверу загрузить HTML с css:

<doctype !html>
<html>
    <head>
        {% load static %}
        <link rel="stylesheet" href="{% static 'registration/style.css' %}">
    </head>

Вот структура моего файла :

omeusite
├── db.sqlite3
├── manage.py
├── omeusite
│   ├── asgi.py
│   ├── __init__.py
│   ├── __pycache__
│   │   ├── __init__.cpython-38.pyc
│   │   ├── settings.cpython-38.pyc
│   │   ├── urls.cpython-38.pyc
│   │   └── wsgi.cpython-38.pyc
│   ├── settings.py
│   ├── urls.py
│   └── wsgi.py
├── quizz
│   ├── admin.py
│   ├── apps.py
│   ├── __init__.py
│   ├── migrations
│   │   ├── 0001_initial.py
│   │   ├── __init__.py
│   │   └── __pycache__
│   │       ├── 0001_initial.cpython-38.pyc
│   │       └── __init__.cpython-38.pyc
│   ├── models.py
│   ├── nano.save
│   ├── __pycache__
│   │   ├── admin.cpython-38.pyc
│   │   ├── apps.cpython-38.pyc
│   │   ├── __init__.cpython-38.pyc
│   │   ├── models.cpython-38.pyc
│   │   ├── urls.cpython-38.pyc
│   │   └── views.cpython-38.pyc
│   ├── templates
│   │   └── quizz
│   │       ├── detail.html
│   │       ├── index.html
│   │       └── results.html
│   ├── tests.py
│   ├── urls.py
│   ├── views.py
│   └── views.py.save
└── registration
    ├── admin.py
    ├── apps.py
    ├── __init__.py
    ├── migrations
    │   ├── __init__.py
    │   └── __pycache__
    │       └── __init__.cpython-38.pyc
    ├── models.py
    ├── __pycache__
    │   ├── admin.cpython-38.pyc
    │   ├── apps.cpython-38.pyc
    │   ├── __init__.cpython-38.pyc
    │   ├── models.cpython-38.pyc
    │   ├── urls.cpython-38.pyc
    │   └── views.cpython-38.pyc
    ├── static
    │   └── registration
    │       └── style.css
    ├── templates
    │   └── registration
    │       └── register.html
    ├── tests.py
    ├── urls.py
    └── views.py

Я сделал все в соответствии с этой ссылкой на документацию https://docs.djangoproject.com/en/4.0/intro/tutorial06/, поэтому я не могу понять, чего мне не хватает.

РЕДАКТИРОВАНИЕ :

Я предполагаю, что это была ошибка :

{% load static %} //place it here instead
<doctype !html>
<html>
    <head>
        <link rel="stylesheet" href="{% static 'registration/style.css' %}">
    </head>
Вернуться на верх