just starting using Django (first project) and I wanted to install the Django Debug Toolbar. I did exactly as the installation guide in the documentation here said: Django Debug Toolbar Docs- Installation
For some reason the page loads like this:
The html file that is loaded is a simple but legit one and ill add it here:
<html>
<body>
{% if name %}
<h1>Hello {{name}}</h1>
{% else %}
<h1>Hello World</h1>
{% endif %}
</body>
BTW: Removing the if statements is not working either, also not working on both chrome and firefox.
Thanks for the help :)