I have obtained a template example that I would like to use in my Django project. I have organized all of my static files within the static folder and made the necessary modifications in settings.py. However, I am encountering an issue with the following line:
<link rel="stylesheet" href="{% static 'node_modules/mdi/css/materialdesignicons.min.css' %}">
When this line is executed, it translates to:
<link rel="stylesheet" href="/static/node_modules/mdi/css/materialdesignicons.min.css">
The specified path does not exist in my static folder. Since I am unfamiliar with node.js, I am unsure how to configure my HTML page to display exactly as it was originally intended. Currently, none of the supporting files from the static directory are being loaded properly.