In following a tutorial, I am adding a chat bot UI that is embedded in Django. The file structure looks like this:
.
├── db.sqlite3
├── installDjango.sh
├── manage.py
├── rasadjango
│ ├── asgi.py
│ ├── __init__.py
│ ├── __pycache__
│ ├── settings.py
│ ├── static
│ ├── urls.py
│ └── wsgi.py
├── rasaweb
│ ├── admin.py
│ ├── apps.py
│ ├── __init__.py
│ ├── migrations
│ ├── models.py
│ ├── __pycache__
│ ├── static
│ ├── templates
│ ├── tests.py
│ ├── urls.py
│ └── views.py
└── venv
├── bin
├── lib
└── pyvenv.cfg
Inside the static folder:
.
├── css
│ ├── materialize.min.css
│ └── style.css
├── img
│ ├── banner.png
│ ├── body.png
│ ├── botAvatar_old.png
└── js
├── chart.min.js
├── jquery.min.js
├── materialize.min.js
└── script.js
In the rasadjango/settings.py file:
PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__))
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'static')
When running:
python manage.py runserver
I encounter an error:
Could not parse the remainder: ''css/materialize.min.css’' from ''css/materialize.min.css’'
This is part of my index.html file where I load the static files:
{% load static %}
....
<link rel= “stylesheet” type= “text/css” href= ”{% static 'css/materialize.min.css’ %}”>
...
What could be causing this issue?