You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inspecting the HTML of a webpage when the django server is running in debug mode confirms that the panels are present; although hidden.
Modifying the CSS confirms that the base panel can be displayed as well:
Django is returning a HTTP 200 status on the files required:
I found that the problem lies with the javascript file was not loading due to it's MIME type:
I am able to resolve this by importing the javascript file directly within my own templates; Note that this is without the 'type="module"' attribute:
After reloading the webpage, the toolbar works as expected. This is only a temporary fix to the real issue which was intruduced at these commits #1 and #2.