I've been working on configuring a webpage using django and pycharm. I have successfully added all the necessary static files and made changes in the settings.py file. In the HTML, I have included the load static block at the beginning and added static blocks to all URLs. However, upon running the server, I noticed that two specific blocks (testimonial and footer) with the div class=parallax_background parallax-window are not loading properly. Below is the relevant code from the HTML:
Index.html
{% load static %}
<! DOCTYPE html>
<html lang="en">
<head>
<title>Travello</title>
... (omitted for brevity)
</body>
</html>
In settings.py-
STATICFILES_DIRS=[
os.path.join(BASE_DIR,'static')
]
STATIC_ROOT=os.path.join(BASE_DIR,'assets')
I'm wondering if there are any additional changes or configurations that need to be made?