I need to open my gmap in a few pages:
{% block extra_js %}
    <script src="{%static 'js/map.js' %}" type="text/javascript"></script>
    <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAZY5nutUGjjf4D...endOFKEY&callback=initMap"async defer></script>
{% endblock %}
and sometimes keys get expired. It's really annoying to change the key in every html file I have. Maybe I can make some sort of a global varialbe and store the key there? Any suggestions?
 
     
    