I\'m writing a Django app and while somewhat familiar with Django I\'m pretty unfamiliar with JavaScript. I\'m adding a few lines of JavaScript into one of my pages in orde
In my Django projects, if I am using a "base" template that every other template extends, I just put a block called "extrahead" inside of the in the HTML.
........ other header stuff
........ include other scripts
{% block extrahead %}
{% endblock %}
.............
... and then use that block just in the template you want the map on. That is assuming that it is just static js code?